/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #f3f0ea;
    --bg-dark: #222222;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --nav-dark: #2C2C2C;
}

html {
    background-color: var(--bg-light);
}

body {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

/* Header Styles */
.header {
    width: 100%;
}

.brand-name {
    text-align: center;
    padding: 20px 20px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.main-nav {
    width: 100%;
    background-color: var(--bg-light);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgba(0, 0, 0, 0.7);
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/INTRA_Managemet.jpg");
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;

    text-shadow: 0 0 12px black;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.hero-portrait {
    position: absolute;
    left: 50%;
    bottom: -150px;
    transform: translateX(-50%);
    width: 450px;
    height: 550px;
    background-image: url('assets/sara_candusso_intra.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

/* Social Media Marketing Section */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.about-section {
    background-color: var(--bg-light);
    padding: 160px 40px 100px 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-intro {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.about-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(34, 34, 34, 0.85);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text-block p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-quote {
    font-size: 24px;
    font-style: italic;
    letter-spacing: 0.5px;
}


.about-media,
.about-network-media {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-media img,
.about-network-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.about-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.about-column p,
.about-network-text p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(34, 34, 34, 0.95);
}

.about-network {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr ;
    gap: 60px;
    align-items: center;
}

.about-network-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-list {
    list-style: none;
    margin: 20px 0 10px 0;
    padding-left: 0;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-description {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.service-link:hover {
    color: rgba(0, 0, 0, 0.7);
    transform: translateX(5px);
}

/* Contact Hero Section */
.contact-hero-section {
    background-color: var(--bg-light);
    padding: 120px 40px 60px 40px;
    text-align: center;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: rgba(34, 34, 34, 0.85);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
    padding: 60px 40px 100px 40px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
    margin: 30px 0 50px 0;
    opacity: 0.9;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--text-dark);
    background-color: #F8F7F5;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    background-color: #FFFFFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--text-dark);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.checkbox-label a:hover {
    opacity: 0.7;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    background-color: var(--bg-dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.form-message.error {
    display: block;
    background-color: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

/* Footer Section */
.footer-section {
    background-color: #1a1c1e;
    padding: 80px 40px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.footer-left {
    width: 100%;
}

.founder-image {
    width: 100%;
    height: 870px;
    background-image: url('assets/sara_candusso_chi_sono.jpeg');
    background-size: cover;
    background-position: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-label {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 10px;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.founder-description {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.founder-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.footer-copyright-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
    border-top: none;
    text-align: center;
}

.footer-copyright p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-copyright .privacy-link {
    color: var(--text-dark);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-copyright .privacy-link:hover {
    opacity: 0.7;
}

/* Prevent navigation menu in footer */
.footer-copyright-section .main-nav,
.footer-copyright-section .nav-links {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        height: 55vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-portrait {
        width: 350px;
        height: 450px;
        left: 50%;
        bottom: -120px;
        transform: translateX(-50%);
    }
    
    .footer-wrapper {
        gap: 40px;
    }
    
    .founder-name {
        font-size: 56px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-section {
        padding: 140px 30px 90px 30px;
    }

    .about-grid,
    .about-network {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-columns {
        gap: 40px;
    }

    .about-highlight,
    .about-column p,
    .about-network-text p,
    .about-list li {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: var(--text-dark);
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    
    /* Sidebar Styles */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        transition: opacity 0.3s ease;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background-color: var(--bg-light);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: 60px 30px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .sidebar.active {
        right: 0;
    }
    
    .sidebar .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }
    
    .sidebar .nav-links a {
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
        color: var(--text-dark);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .sidebar-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--text-dark);
        font-size: 28px;
        cursor: pointer;
        padding: 5px;
        line-height: 1;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sidebar-close:hover {
        color: rgba(0, 0, 0, 0.7);
    }
    
    .logo {
        max-width: 250px;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-portrait {
        width: 300px;
        height: 400px;
        left: 50%;
        bottom: -100px;
        transform: translateX(-50%);
    }
    
    .services-section,
    .contact-section {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        padding: 60px 20px;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image {
        height: 400px;
    }
    
    .founder-name {
        font-size: 48px;
    }
    
    .footer-copyright-section {
        padding: 30px 20px;
    }
    
    .footer-copyright p {
        font-size: 11px;
    }

    .about-section {
        padding: 120px 20px 80px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-highlight {
        font-size: 18px;
    }

    .about-grid,
    .about-network {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-media,
    .about-network-media {
        max-height: 420px;
    }

    .about-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-column,
    .about-network-text {
        gap: 18px;
    }

    .about-column p,
    .about-network-text p,
    .about-list li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 10px;
        font-size: 10px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .hero-section {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-portrait {
        width: 250px;
        height: 320px;
        left: 50%;
        bottom: -80px;
        transform: translateX(-50%);
    }
    
    .founder-label {
        font-size: 24px;
    }
    
    .founder-name {
        font-size: 36px;
    }
    
    .founder-description {
        font-size: 16px;
    }
    
    .founder-text {
        font-size: 14px;
    }
    
    .footer-section {
        padding: 50px 20px;
    }
    
    .footer-wrapper {
        gap: 30px;
    }
    
    .services-section,
    .contact-section {
        padding: 50px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .contact-intro {
        font-size: 18px;
        margin: 20px 0 40px 0;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 110px 20px 60px 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .about-highlight {
        font-size: 16px;
    }

    .about-media,
    .about-network-media {
        max-height: 320px;
    }

    .about-column p,
    .about-network-text p,
    .about-list li {
        font-size: 15px;
    }

    .about-list li {
        padding-left: 24px;
    }

    .about-list li::before {
        font-size: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for sticky header */
}

section {
    scroll-margin-top: 100px; /* Additional offset for anchor links */
}

/* Image Loading Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Service Detail Pages Styles */
.service-hero-section {
    background-color: var(--bg-light);
    padding: 120px 40px 80px 40px;
    text-align: center;
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: rgba(34, 34, 34, 0.85);
    line-height: 1.6;
}

.service-detail-section {
    background-color: var(--bg-light);
    padding: 60px 40px 100px 40px;
}

.service-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-intro {
    margin-bottom: 50px;
}

.service-intro p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-content {
    margin-bottom: 50px;
}

.service-content-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-subsection {
    margin-bottom: 40px;
}

.service-subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(34, 34, 34, 0.95);
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-dark);
    font-size: 24px;
    line-height: 1;
}

.service-note {
    background-color: #F8F7F5;
    padding: 25px 30px;
    border-left: 3px solid var(--text-dark);
    margin-bottom: 40px;
}

.service-note p {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.service-conclusion {
    margin-bottom: 50px;
}

.service-conclusion p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-quote {
    font-size: 22px;
    font-style: italic;
    letter-spacing: 0.5px;
    color: rgba(34, 34, 34, 0.9);
}

.service-placeholder {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(34, 34, 34, 0.8);
    text-align: center;
    padding: 40px 20px;
    background-color: #F8F7F5;
    border-radius: 8px;
}

.service-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    background-color: var(--bg-dark);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive styles for service detail pages */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 100px 20px 50px 20px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 20px;
    }

    .service-hero-section {
        padding: 100px 20px 60px 20px;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-tagline {
        font-size: 20px;
    }

    .service-detail-section {
        padding: 50px 20px 80px 20px;
    }

    .service-intro p,
    .service-list li,
    .service-conclusion p {
        font-size: 17px;
    }

    .service-subsection-title {
        font-size: 20px;
    }

    .service-quote {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .service-hero-title {
        font-size: 28px;
    }

    .service-hero-tagline {
        font-size: 18px;
    }

    .service-intro p,
    .service-list li,
    .service-conclusion p {
        font-size: 16px;
    }

    .service-subsection-title {
        font-size: 18px;
    }

    .service-quote {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 12px;
    }
}

