* {
    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 {
    background: linear-gradient(135deg, #4a8bb5 0%, #6ba3c7 50%, #8bbbd9 100%);
    color: white;
    padding: 1.75rem 0 6rem 0;
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 13px;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    margin-right: 0.5rem;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.category-tag {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.3rem;
    max-width: 800px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 13px;
    opacity: 0.8;
}


/* Main Content */
.main-content {
    max-width: 1100px;
    margin: -4.5rem auto 0;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    padding: 3rem;
    min-height: 600px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content h2 {
    color: #4a8bb5;
    font-size: 1.75rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.article-content h3 {
    color: #4a8bb5;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: #333;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #ff6b35;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.highlight-box h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.highlight-box h4::before {
    content: '💡';
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

.highlight-box p {
    margin-bottom: 0.5rem;
    font-style: italic;
    color: #555;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #4a8bb5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a8bb5;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2c5282 0%, #4a8bb5 50%, #6ba3c7 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid white;
}

.btn-primary {
    background: white;
    color: #58A0C8;
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #58A0C8;
}

.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 h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .main-content {
        margin: -2rem 1rem 0;
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-top: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}