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

:root {
    /* Toss-inspired Modern Palette */
    --primary: #3182F6;           /* 신뢰감 있는 블루 (토스 블루) */
    --primary-dark: #1B64DA;
    --secondary: #8B9A7E;         /* 세이지 그린 (2025 트렌드) */
    --accent: #FF6B35;            /* 따뜻한 코랄 오렌지 (CTA) */
    --accent-hover: #FF5722;
    --dark: #333333;              /* 다크 그레이 (순수 블랙 지양) */
    --gray: #6B7280;
    --light-gray: #F9FAFB;
    --neutral-bg: #FAFAFA;        /* 연한 뉴트럴 배경 */
    --white: #ffffff;
    --border: #E5E7EB;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans KR', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

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

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    font-size: 32px;
}

.logo-image {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-button {
    padding: 12px 24px;
    background: transparent;
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.contact-button:hover {
    background: var(--neutral-bg);
    color: var(--primary);
}

.cta-button-header {
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button-header:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animated gradient placeholder for video */
.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3182F6 0%, #8B9A7E 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button-large {
    padding: 20px 52px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button-large:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.cta-button-large .arrow {
    transition: var(--transition);
}

.cta-button-large:hover .arrow {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.8;
    animation: bounce 2s infinite;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--white);
    border-radius: 2px;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 80px 20px;
    background: var(--neutral-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.feature-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-icon.brain {
    background: linear-gradient(135deg, rgba(49, 130, 246, 0.1) 0%, rgba(49, 130, 246, 0.2) 100%);
    color: var(--primary);
}

.feature-icon.ai {
    background: linear-gradient(135deg, rgba(139, 154, 126, 0.1) 0%, rgba(139, 154, 126, 0.2) 100%);
    color: var(--secondary);
}

.feature-icon.chart {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.2) 100%);
    color: var(--accent);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card:hover .feature-icon.brain {
    background: linear-gradient(135deg, rgba(49, 130, 246, 0.15) 0%, rgba(49, 130, 246, 0.25) 100%);
    box-shadow: 0 8px 24px rgba(49, 130, 246, 0.2);
}

.feature-card:hover .feature-icon.ai {
    background: linear-gradient(135deg, rgba(139, 154, 126, 0.15) 0%, rgba(139, 154, 126, 0.25) 100%);
    box-shadow: 0 8px 24px rgba(139, 154, 126, 0.2);
}

.feature-card:hover .feature-icon.chart {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.25) 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* ========================================
   Video Preview Section
   ======================================== */
.video-preview {
    padding: 80px 20px;
    background: var(--white);
}

.video-preview .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.video-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--dark);
    transition: var(--transition);
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

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

/* ========================================
   Process Section
   ======================================== */
.process {
    padding: 80px 20px;
    background: var(--neutral-bg);
    color: var(--dark);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    animation: fadeIn 1s ease;
}

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

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(49, 130, 246, 0.3);
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    opacity: 0.9;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    animation: arrowPulse 2s ease-in-out infinite;
    transition: var(--transition);
}

.process-arrow svg {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 8px rgba(49, 130, 246, 0.2));
    animation: arrowMove 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    padding: 80px 20px;
    background: var(--white);
    color: var(--dark);
}

.stats-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    display: inline-block;
}

.stat-suffix {
    font-size: 32px;
    color: var(--accent);
    display: inline-block;
    vertical-align: super;
    margin-left: 5px;
}

.stat-icon {
    font-size: 72px;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    margin-top: 15px;
    font-weight: 600;
    color: var(--dark);
}

.stat-description {
    font-size: 14px;
    margin-top: 8px;
    color: var(--gray);
}

/* ========================================
   Timeline Section
   ======================================== */
.timeline-section {
    padding: 80px 20px;
    background: var(--neutral-bg);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-gray);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    flex: 0 0 120px;
    text-align: right;
    padding-right: 40px;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray);
}

.timeline-content {
    flex: 1;
    padding-left: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.timeline-content p {
    font-size: 16px;
    color: var(--gray);
    margin: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--gray);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--light-gray);
}

.timeline-item.active::after {
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--primary), 0 0 20px rgba(49, 130, 246, 0.5);
}

.timeline-item.active .timeline-date {
    color: var(--primary);
    font-weight: 700;
}

.timeline-item.active .timeline-content {
    background: rgba(49, 130, 246, 0.05);
    border: 2px solid var(--primary);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 20px;
    background: var(--white);
    color: var(--gray);
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.footer-logo .logo-image {
    height: 60px;
}

.footer-logo .logo-text {
    color: var(--dark);
}

.footer-text {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--gray);
}

.footer-copyright {
    font-size: 14px;
    color: var(--gray);
    opacity: 0.7;
}

/* ========================================
   Modal
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--dark);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.modal-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-info {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    margin-top: 30px;
}

.modal-info p {
    margin: 0;
    color: var(--dark);
}

.modal-button {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 44px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
}

.modal-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}


/* Contact Modal Specific Styles */
#contactModal .modal-content {
    max-width: 400px;
    padding: 40px 30px;
}

#contactModal .modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

#contactModal h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

#contactModal p {
    font-size: 14px;
    margin-bottom: 16px;
}

#contactModal .modal-info {
    margin: 16px 0;
}

#contactModal .modal-button {
    padding: 14px 32px;
    margin-top: 20px;
    font-size: 16px;
}

#contactModal .email-alternatives {
    margin-top: 20px;
    padding-top: 20px;
}

#contactModal .alternatives-title {
    font-size: 14px;
    margin-bottom: 12px;
}

#contactModal .webmail-buttons {
    gap: 10px;
}

#contactModal .webmail-link {
    padding: 12px 20px;
    font-size: 14px;
}

#contactModal .webmail-icon {
    width: 18px;
    height: 18px;
}

.email-address {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    background: var(--neutral-bg);
    padding: 16px 24px;
    border-radius: 10px;
    margin: 20px 0;
    word-break: break-all;
}

.email-alternatives {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.alternatives-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    text-align: center;
}

.webmail-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.webmail-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.webmail-icon {
    width: 20px;
    height: 20px;
}

.webmail-link.gmail {
    background: #EA4335;
    color: var(--white);
}

.webmail-link.gmail:hover {
    background: #D33426;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.webmail-link.outlook {
    background: #0078D4;
    color: var(--white);
}

.webmail-link.outlook:hover {
    background: #006ABC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.webmail-link.default {
    background: var(--neutral-bg);
    color: var(--dark);
    border: 2px solid var(--border);
}

.webmail-link.default:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 246, 0.3);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .header-nav {
        gap: 8px;
    }

    .contact-button {
        padding: 10px 16px;
        font-size: 14px;
        gap: 6px;
    }

    .contact-icon {
        width: 16px;
        height: 16px;
    }

    .cta-button-header {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .cta-button-large {
        padding: 14px 32px;
        font-size: 16px;
    }

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

    .video-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .video-wrapper {
        max-width: 100%;
        border-radius: 12px;
    }

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

    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        margin: 20px 0;
    }

    .process-arrow svg {
        width: 48px;
        height: 48px;
        transform: rotate(90deg);
    }

    @keyframes arrowMove {
        0%, 100% {
            transform: translateY(0) rotate(90deg);
        }
        50% {
            transform: translateY(6px) rotate(90deg);
        }
    }

    .stats-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-icon {
        font-size: 56px;
    }

    .stat-label {
        font-size: 18px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-item::after {
        left: 30px;
    }

    .timeline-date {
        text-align: left;
        padding-right: 0;
        padding-bottom: 10px;
        font-size: 20px;
    }

    .timeline-content {
        padding-left: 0;
        width: 100%;
    }

    .cta-title {
        font-size: 32px;
    }

    .header .container {
        padding: 15px 20px;
    }

    .logo-image {
        height: 52px;
    }

    .logo-text {
        font-size: 18px;
    }

    .footer-logo .logo-image {
        height: 48px;
    }

    .cta-button-header {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-button {
        padding: 8px 12px;
        font-size: 13px;
        gap: 4px;
    }

    .contact-icon {
        width: 14px;
        height: 14px;
    }

    .cta-button-header {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 32px;
    }

    .logo-image {
        height: 45px;
    }

    .logo-text {
        font-size: 16px;
    }

    .footer-logo .logo-image {
        height: 42px;
    }

    .stat-number {
        font-size: 36px;
    }

    .modal-content {
        padding: 40px 30px;
    }

    #contactModal .modal-content {
        padding: 30px 24px;
        max-width: 90%;
    }

    #contactModal .modal-icon {
        font-size: 40px;
    }

    #contactModal h3 {
        font-size: 22px;
    }

    #contactModal p {
        font-size: 13px;
    }

    .modal-button {
        padding: 14px 32px;
        font-size: 16px;
    }

    #contactModal .modal-button {
        padding: 12px 28px;
        font-size: 15px;
    }

    .email-address {
        font-size: 18px;
        padding: 14px 20px;
    }

    #contactModal .webmail-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    #contactModal .webmail-icon {
        width: 16px;
        height: 16px;
    }
}
