* {
    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: #1D2951;
    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, #A03C93 0%, #6B2C91 100%);
    padding: 20px 0px;
    color: white;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.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 200 200"><defs><pattern id="hexPattern" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.43 50,28.87 25,43.3 0,28.87 0,14.43" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern><pattern id="circlePattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.08)"/></pattern><pattern id="dotPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.15)"/><circle cx="5" cy="25" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="5" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="200" height="200" fill="url(%23hexPattern)"/><rect width="200" height="200" fill="url(%23circlePattern)"/><rect width="200" height="200" fill="url(%23dotPattern)"/></svg>');
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 154, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    opacity: 0.6;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 13px;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover{
    opacity: 1;
}
.breadcrumb span {
    margin: 0 10px;
}

.category-tag {
    display: inline-block;
    background: #00D4AA;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero .subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    opacity: 0.9;
}

.meta-info {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 13px;
    opacity: 0.8;
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Article Content */
.article-content {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.content-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #A03C93;
    font-size: 1.75rem;
    margin-bottom: 20px;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #A03C93, #00D4AA);
}

.content-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.content-section ul {
    margin: 20px 0 20px 20px;
}

.content-section li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #A03C93;
    padding: 30px;
    margin: 30px 0;
    /* border-radius: 8px; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.highlight-box p{
    font-style: italic;
    font-weight: 500;
}
/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #A03C93 0%, #6B2C91 100%);
    padding: 80px 0;
    color: white;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00D4AA, #00BF9A);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 20px rgba(0, 212, 170, 0.4); */
}

.contact-btn:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 8px 30px rgba(0, 212, 170, 0.6); */
    color: white;
    text-decoration: none;
}

.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;}
/* Responsive Design */ 
@media (max-width: 768px) {
        .company-info-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .company-name {
        font-size: 1.2rem;
    }
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}