* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Epilogue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #58A0C8, #4a8bb5);
    color: white;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.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="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.company-name {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumbs {
    margin-bottom: 30px;
    opacity: 0.8;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.breadcrumbs a:hover{ color: #c6d0d9;}
.breadcrumbs span {
    margin: 0 5px;
}

.hero-image {
    margin: 2rem 0;
    text-align: center;
}

.article-hero-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.content-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.article-image caption {
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.article-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: white;
    color: #4a8bb5;
}

.article-title {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
}

.article-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 30px;
    font-size: 13px;
    opacity: 0.8;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -80px;
    padding: 60px 20px;
}

.content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

a{
    color: #068D9A;
    text-decoration: none;
}

ul {
  margin: 0;          /* removes extra space above/below the list */
  padding-left: 15px; /* keep indentation (optional) */
}

ul li {
  margin: 1px 0;      /* reduce vertical gap between bullet points */
}


p + p {
  margin-top: 1px; /* only affects paragraphs that follow another paragraph */
}

div + div {
  margin-top: 0.4px;  /* only adds space between divs, not before the first one */
}

#height>li{
    line-height: 25px;
}


.article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #58A0C8;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #58A0C8;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid #58A0C8;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.card-grid {
    display: grid;
    /* Creates a responsive grid that fits as many 300px columns as possible */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /* Space between cards */
    margin-top: 40px;
    /* Space below the section title */
}

/* Individual card styling */
.info-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 0 20px;
    /* padding: 30px 30px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: all 0.3s ease-in-out;
}

/* Hover effect to lift the card and add a stronger shadow */
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Icon styling */
.card-icon {
    font-size: 2.5rem;
    color: #805ad5;
    /* A nice purple accent color - change if needed */
    margin-bottom: 20px;
}

/* Card title */
.info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

/* Card description */
.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
        /* Stack cards vertically on mobile */
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #58A0C8, #4a8bb5);
    color: white;
    padding: 40px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card{
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card a{
    text-decoration: none;
    color: white;
}
.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.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;
}

/* Social Icons */
.social-icon {
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.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;
}

.bottom-bar .staunch-info{margin-top:20px;}

.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);
}

/* Responsive Design */
@media (max-width: 768px) {

    .article-title {
        font-size: 2.2rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .content-wrapper {
        padding: 30px;
        margin: 0 10px;
        margin-top: -40px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-icon {
        position: static;
        justify-content: center;
        margin-top: 20px;
        transform: none;
    }
}