* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2841;
    --secondary-color: #4a6fa5;
    --accent-color: #e8eef5;
    --text-dark: #1a2841;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #fafafa;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

* {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Prevent layout shift for images */
.service-card-image,
.profile-image,
.products-image {
    background-color: #f5f5f5;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

/* Ensure touch targets are at least 44x44px for mobile */
@media (max-width: 768px) {
    a, button, input, select, textarea {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    button, a.button, .cta-button, .book-button, .directions-button {
        min-width: 44px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(25, 40, 65, 0.4), rgba(15, 30, 55, 0.3)),
                url('Images/Landing.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 30, 55, 0.15);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    margin: 0 auto 0.25rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 0.8s ease;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 1), -1px -1px 2px rgba(0, 0, 0, 0.9);
    text-align: center;
    width: 100%;
    padding: 10px 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.4);
    min-height: 48px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 111, 165, 0.6);
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    height: 100%;
    max-height: none;
}

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

.service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card h4 {
    font-size: 1.3rem;
    margin: 20px 30px 15px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    text-align: center;
    flex-shrink: 0;
}

.service-card p {
    color: var(--text-light);
    margin: 0 30px 20px;
    line-height: 1.7;
    flex-grow: 1;
    text-align: center;
    font-size: 0.9rem;
    width: calc(100% - 60px);
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    max-width: 100%;
}

.service-card p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.book-button {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    min-height: 48px;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.book-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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


/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-text {
    text-align: center;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

.about-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card .about-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--light-bg);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.location-info {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.address-box {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.address {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.8;
}

.directions-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.directions-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.location-details {
    margin-top: 30px;
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.detail-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.map-container {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: var(--accent-color);
}

/* Products Coming Soon Section */
.products-coming-soon {
    padding: 100px 0;
    background: var(--light-bg);
    display: none;
}

.products-image-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.products-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
    text-align: center;
}

.contact-item {
    margin-bottom: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    padding: 10px 20px;
    background: var(--accent-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.map-placeholder {
    height: 400px;
    background: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        padding: 1rem 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 1.5rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu li {
        margin: 5px 0;
    }

    .nav-menu a {
        display: block;
        padding: 14px 20px;
        font-size: 1.1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding: 75px 0 30px;
        align-items: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-logo {
        max-width: 300px;
        margin-bottom: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 10px 15px;
        margin-bottom: 1rem;
        line-height: 1.6;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8), 2px 2px 3px rgba(0, 0, 0, 1), -1px -1px 2px rgba(0, 0, 0, 0.9);
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        min-height: 48px;
        margin-top: 0.5rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .service-card-image {
        height: 180px;
        object-fit: cover;
        width: 100%;
    }

    .service-card h4 {
        font-size: 1.2rem;
        margin: 15px 20px 12px;
        text-align: center;
    }

    .service-card p {
        margin: 0 20px 15px;
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.6;
        width: calc(100% - 40px);
        max-width: 100%;
    }
    
    .service-card p strong {
        color: var(--primary-color);
        font-weight: 600;
    }

    .book-button {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
        padding: 14px 20px;
        min-height: 48px;
        font-size: 1rem;
    }

    .about {
        padding: 60px 0;
    }

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

    .about-card {
        padding: 25px;
        margin-top: 15px;
        max-width: 100%;
    }
    
    .about-card .about-content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .about-image {
        height: 300px;
        order: -1;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .location {
        padding: 60px 0;
    }

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

    .location-info {
        padding: 25px;
    }

    .address-box {
        padding: 20px;
    }

    .address {
        font-size: 1.1rem;
    }

    .directions-button {
        padding: 12px 25px;
        min-height: 48px;
        font-size: 0.95rem;
    }

    .map-container {
        height: 350px;
    }

    .products-coming-soon {
        padding: 50px 0;
    }

    .products-image-container {
        max-width: calc(100% - 30px);
        margin: 0 auto;
        padding: 0 15px;
    }

    .products-image {
        max-height: 400px;
        width: 100%;
        object-fit: contain;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-grid {
        max-width: 100%;
    }

    .contact-item {
        margin-bottom: 30px;
    }

    .contact-item h3 {
        font-size: 1.3rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-links a {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0.8rem 15px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .hero {
        padding: 70px 0 25px;
        align-items: flex-start;
        min-height: auto;
    }

    .hero-content {
        padding: 0 15px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-logo {
        max-width: 240px;
        margin-bottom: 0.4rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 8px 12px;
        margin-bottom: 1rem;
        line-height: 1.5;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.95), 0 0 18px rgba(0, 0, 0, 0.8), 2px 2px 3px rgba(0, 0, 0, 1), -1px -1px 2px rgba(0, 0, 0, 0.9);
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 90%;
        max-width: 280px;
        margin-top: 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .services {
        padding: 50px 0;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card-image {
        height: 160px;
        object-fit: cover;
        width: 100%;
    }

    .service-card h4 {
        font-size: 1.1rem;
        margin: 15px 18px 10px;
        text-align: center;
    }

    .service-card p {
        margin: 0 18px 12px;
        font-size: 0.8rem;
        line-height: 1.5;
        text-align: center;
        width: calc(100% - 36px);
        max-width: 100%;
    }
    
    .service-card p strong {
        color: var(--primary-color);
        font-weight: 600;
    }

    .book-button {
        width: calc(100% - 36px);
        margin: 0 18px 18px;
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .about {
        padding: 50px 0;
    }

    .about-image {
        height: 250px;
    }

    .about-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .location {
        padding: 50px 0;
    }

    .location-info {
        padding: 20px;
    }

    .location-info h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .address-box {
        padding: 18px;
    }

    .address {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .map-container {
        height: 300px;
    }

    .products-coming-soon {
        padding: 50px 0;
    }

    .products-image-container {
        max-width: calc(100% - 30px);
        margin: 0 auto;
        padding: 0 15px;
    }

    .products-image {
        max-height: 350px;
        width: 100%;
        object-fit: contain;
    }

    .contact {
        padding: 50px 0;
    }

    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .social-links a {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .footer {
        padding: 25px 0;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .hero-logo {
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding: 8px 10px;
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.95), 0 0 16px rgba(0, 0, 0, 0.8), 2px 2px 3px rgba(0, 0, 0, 1), -1px -1px 2px rgba(0, 0, 0, 0.9);
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .service-card h4 {
        font-size: 1rem;
        margin: 12px 15px 8px;
        text-align: center;
    }

    .service-card p {
        font-size: 0.85rem;
        margin: 0 15px 10px;
        text-align: center;
    }

    .service-card-image {
        height: 140px;
    }

    .book-button {
        padding: 12px 16px;
        font-size: 0.9rem;
        width: calc(100% - 30px);
        margin: 0 15px 15px;
    }

    .container {
        padding: 0 12px;
    }

    .cta-button {
        width: 85%;
        max-width: 250px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .about-image {
        height: 220px;
    }

    .products-coming-soon {
        padding: 40px 0;
    }

    .products-image-container {
        max-width: calc(100% - 24px);
        margin: 0 auto;
        padding: 0 12px;
    }

    .products-image {
        max-height: 300px;
        width: 100%;
        object-fit: contain;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

    body {
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
    }

    /* Prevent text selection on buttons for better mobile UX */
    button, .cta-button, .book-button {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

    /* Optimize scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Better focus states for accessibility */
    a:focus-visible, button:focus-visible {
        outline: 2px solid var(--secondary-color);
        outline-offset: 2px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 20px;
    }

    .hero-logo {
        max-width: 220px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        padding: 10px 15px;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8), 2px 2px 3px rgba(0, 0, 0, 1), -1px -1px 2px rgba(0, 0, 0, 0.9);
    }
}

