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

html {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #0f0f0f;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

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

/* Navigation */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo h2 {
    color: #ffffff;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Cobweb Corner Decorations */
.cobweb {
    position: absolute;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.4;
}

.cobweb-top-left {
    top: 0;
    left: 0;
    background:
        radial-gradient(ellipse at 0% 0%, transparent 60%, rgba(255,255,255,0.1) 61%, transparent 62%),
        linear-gradient(45deg, rgba(255,255,255,0.15) 0%, transparent 50%),
        linear-gradient(30deg, rgba(255,255,255,0.1) 0%, transparent 40%),
        linear-gradient(60deg, rgba(255,255,255,0.1) 0%, transparent 40%),
        linear-gradient(15deg, rgba(255,255,255,0.08) 0%, transparent 35%),
        linear-gradient(75deg, rgba(255,255,255,0.08) 0%, transparent 35%);
}

.cobweb-top-right {
    top: 0;
    right: 0;
    background:
        radial-gradient(ellipse at 100% 0%, transparent 60%, rgba(255,255,255,0.1) 61%, transparent 62%),
        linear-gradient(-45deg, rgba(255,255,255,0.15) 0%, transparent 50%),
        linear-gradient(-30deg, rgba(255,255,255,0.1) 0%, transparent 40%),
        linear-gradient(-60deg, rgba(255,255,255,0.1) 0%, transparent 40%),
        linear-gradient(-15deg, rgba(255,255,255,0.08) 0%, transparent 35%),
        linear-gradient(-75deg, rgba(255,255,255,0.08) 0%, transparent 35%);
}

/* Skull Icon */
.skull-icon {
    vertical-align: middle;
    margin-right: 8px;
    opacity: 0.9;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.hero-profile {
    margin-bottom: 24px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.hero-audio {
    width: 100%;
    margin-bottom: 30px;
}

.hero-audio-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 12px;
}

.hero-audio audio {
    width: 100%;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: opacity 0.5s ease, color 0.2s ease;
    z-index: 2;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.scroll-indicator:visited,
.scroll-indicator:active,
.scroll-indicator:focus {
    color: rgba(255, 255, 255, 0.6) !important;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Skeleton Hand Animation */
.skeleton-hand {
    width: 40px;
    height: 40px;
    fill: rgba(255, 255, 255, 0.6);
    animation: point-bounce 2s infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.scroll-indicator:hover .skeleton-hand {
    fill: rgba(255, 255, 255, 0.9);
}

@keyframes point-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
}

.btn-primary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.profile-photo:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Featured Demo Section */
.featured-demo {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    text-align: center;
}

.featured-demo .container {
    max-width: 600px;
}

.featured-demo-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.featured-demo-subtitle {
    font-size: 0.95rem;
    color: #d1d5db;
    margin-bottom: 24px;
}

.featured-audio-player {
    background: #242424;
    border-radius: 4px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.featured-audio-player audio {
    width: 100%;
}

.featured-demo-cta {
    font-size: 0.9rem;
    color: #9ca3af;
}

.featured-demo-cta a {
    color: #ffffff;
    text-decoration: underline;
}

.featured-demo-cta a:hover {
    color: #e5e7eb;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

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

.service-card {
    background: #242424;
    padding: 32px 24px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    background: #2a2a2a;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.service-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
}

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

.about-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-content p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.about-services h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list .service-icon {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer - Sticky at bottom */
.footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        z-index: 1000;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 90px 20px 50px;
        min-height: 100vh;
    }

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

    .hero-tagline {
        font-size: 1rem;
    }

    .profile-photo {
        width: 140px;
        height: 140px;
    }

    /* Gothic elements mobile styles */
    .scroll-indicator {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.6) !important;
    }

    .scroll-indicator:visited,
    .scroll-indicator:active,
    .scroll-indicator:focus,
    .scroll-indicator:link {
        color: rgba(255, 255, 255, 0.6) !important;
    }

    .skeleton-hand {
        width: 35px;
        height: 35px;
        fill: rgba(255, 255, 255, 0.7) !important;
    }

    .skeleton-hand path {
        fill: rgba(255, 255, 255, 0.7) !important;
    }

    .cobweb {
        width: 100px;
        height: 100px;
        opacity: 0.3;
    }

    .skull-icon {
        width: 18px;
        height: 18px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Audio Gallery */
.audio-gallery {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    flex: 1;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.audio-item {
    background: #242424;
    border-radius: 4px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.audio-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    background: #2a2a2a;
}

.audio-info {
    margin-bottom: 20px;
}

.audio-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.audio-info p {
    color: #d1d5db;
    margin-bottom: 10px;
}

.audio-category {
    background: #ffffff;
    color: #000000;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
}

.audio-player audio {
    width: 100%;
    height: 40px;
}

.upload-section {
    background: #242424;
    padding: 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.upload-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.file-info {
    margin-top: 30px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.file-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.file-info ul {
    list-style-position: inside;
    color: #d1d5db;
}

.file-info li {
    margin-bottom: 5px;
}

/* Video Gallery */
.video-gallery {
    padding: 60px 0;
    background: #1a1a1a;
}

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

.video-item {
    background: #242424;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.video-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.video-info p {
    color: #d1d5db;
    margin-bottom: 10px;
    line-height: 1.5;
}

.video-category {
    background: #ffffff;
    color: #000000;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-instructions {
    background: #242424;
    padding: 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-instructions h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.video-instructions ol {
    margin: 20px 0;
    padding-left: 20px;
}

.video-instructions li {
    margin-bottom: 8px;
    color: #d1d5db;
}

.embed-example {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.embed-example h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.embed-example code {
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e5e7eb;
    display: block;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .audio-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .audio-item,
    .video-item {
        margin: 0 10px;
    }
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
    background: #1a1a1a;
    flex: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    background: #242424;
    padding: 24px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-container h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-form {
    display: grid;
    gap: 12px;
}

/* Desktop: inline form rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 4px;
    color: #e5e7eb;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
}

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

.form-success {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    padding: 16px;
    text-align: center;
}

.form-success h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-success p {
    color: #e5e7eb;
    font-size: 0.9rem;
}

.contact-info {
    background: #242424;
    padding: 24px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: fit-content;
}

.contact-info h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #ffffff;
}

.contact-item p {
    color: #d1d5db;
    margin: 0;
    font-size: 0.9rem;
}

.contact-item p a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-item p a:hover {
    text-decoration: underline;
}

.services-offered,
.working-hours {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-offered h3,
.working-hours h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.services-offered ul {
    list-style: none;
    padding: 0;
}

.services-offered li {
    padding: 3px 0;
    color: #d1d5db;
    position: relative;
    padding-left: 18px;
    font-size: 0.85rem;
}

.services-offered li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.working-hours p {
    color: #d1d5db;
    margin-bottom: 4px;
    font-size: 0.85rem;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    accent-color: #ffffff;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.3);
}

.checkbox-label {
    color: #e5e7eb !important;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0 !important;
    font-size: 0.85rem;
}

.form-help-text {
    color: #9ca3af;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.budget-field {
    transition: all 0.2s ease;
}

/* Mobile responsive adjustments for checkbox */
@media (max-width: 768px) {
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkbox-group input[type="checkbox"] {
        margin-right: 0;
        margin-bottom: 6px;
    }

    .form-help-text {
        font-size: 0.8rem;
        margin-top: 4px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-container,
    .contact-info {
        padding: 20px 16px;
    }
}
