* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Epilogue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Company Info Bar */
.company-info-bar {
    background: #2A3A66;
    padding: 1rem 0;
    color: white;
    margin-top: 90px;
}

.company-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    color: white;
}

.social-icon {
    display: flex;
    gap: 1rem;
}

/* Social Icons */

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;

}

.social-icon a:hover {
    background: white;
    color: #58A0C8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 50%, #093637 100%);
    padding: 30px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.category-tag {
    background: #FFC107;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 800px;
}

.article-meta {
    display: flex;
    gap: 30px;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Main Content */
.main-content {
    max-width: 1100px;
    margin: -50px auto 80px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.content-body {
    padding: 60px 50px;
}

.content-body h2 {
    color: #2c3e50;
    font-size: 1.75rem;
    margin-bottom: 20px;
    margin-top: 40px;
    position: relative;
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body h3 {
    color: #4ECDC4;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

/* Solution cards container */
.solution-cards {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

/* Individual solution card */
.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card:nth-child(1) {
    border-left: 5px solid #4ECDC4;
}

.solution-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.solution-card:nth-child(2) {
    border-left: 5px solid #45B7D1;
}

.solution-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(69, 183, 209, 0.2);
}

.solution-card:nth-child(3) {
    border-left: 5px solid #96CEB4;
}

.solution-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(150, 206, 180, 0.2);
}

/* Card header with icon */
.card-header {
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: center;
}

.card-title img{
    width: 180px;
    height: 100px;
    object-fit: contain;
}

.card-description {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Call-to-action box */
.cta-box {
    background: linear-gradient(45deg, #4ECDC4, #45B7D1);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box p:first-child {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-box p:last-child {
    margin: 10px 0 0 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

.content-body h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #4ECDC4, #45B7D1, #96CEB4);
    border-radius: 2px;
}

.content-body p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.content-body ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-body li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 50%, #093637 100%);
    padding: 50px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact button */
.contact-button {
    background: linear-gradient(45deg, #4ECDC4, #45B7D1);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
}

.contact-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(78, 205, 196, 0.6);
    background: linear-gradient(45deg, #45B7D1, #4ECDC4, #96CEB4);
}

.share-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid #e2e8f0;
    margin-top: 1rem;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.share-text {
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #4a5568;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-button {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.share-button:hover::before {
    left: 100%;
}

.share-button.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.share-button.facebook {
    background: linear-gradient(135deg, #1877f2, #0866d3);
    color: white;
}

.share-button.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.share-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.bottom-bar .staunch-info{margin-top:20px;}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .content-body {
        padding: 40px 30px;
    }

    .solution-cards {
        grid-template-columns: 1fr;
    }

    .contact-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}