/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(30, 64, 175, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: #1e40af;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #1e40af;
}

.cta-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: transparent;
    color: #1e40af;
    padding: 0.8rem 1.5rem;
    border: 2px solid #3b82f6;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Main content */
main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-description {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e40af;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-note {
    color: #475569;
    font-size: 0.9rem;
    font-style: italic;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}


/* Section titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Solution section */
.problem-solution {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.transformation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.as-is, .to-be {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
}

.as-is h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.to-be h3 {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.issues-grid, .benefits-grid {
    display: grid;
    gap: 1rem;
}

.issue-card, .benefit-card {
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.issue-card {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
}

.benefit-card {
    background: #f0fdf4;
    border-left: 4px solid #059669;
}

.benefit-card.highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid #3b82f6;
}

.issue-icon, .benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.arrow {
    font-size: 3rem;
    color: #3b82f6;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transformation-summary {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.summary-card {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    border-left: 4px solid #3b82f6;
}


.summary-card h4 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.summary-card p {
    color: #475569;
    line-height: 1.7;
}

/* Content section */
.content {
    padding: 6rem 0;
    background: white;
}

.content-screenshot {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.content-screenshot img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.content-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #1e40af;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* AI Cycle */
.ai-cycle {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.ai-cycle h3 {
    text-align: center;
    color: #1e40af;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.cycle-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.cycle-step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(30, 64, 175, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.cycle-step h4 {
    color: #1e40af;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.cycle-step p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.step-result {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
}

.cycle-arrow {
    font-size: 2rem;
    color: #3b82f6;
    font-weight: bold;
}

.cycle-note {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #3b82f6;
}

/* Course Details */
.course-details {
    padding: 6rem 0;
    background: #f8fafc;
}

.course-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.course-content, .course-outcome {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
}

.course-content h3, .course-outcome h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.course-list, .goal-list {
    list-style: none;
    margin-bottom: 2rem;
}

.course-list li, .goal-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.course-list li::before, .goal-list li::before {
    content: '✓';
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.outcome-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3b82f6;
}

.business-impact {
    margin-top: 2rem;
}

.business-impact h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.impact-point {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid #059669;
}

.point-label {
    background: #059669;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.8rem;
}

/* Instructors */
.instructors {
    padding: 6rem 0;
    background: white;
}

.instructor-single {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.instructor-single .instructor-card {
    max-width: 800px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.instructor-card {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: transform 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.instructor-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    padding: 2rem;
}

.instructor-info h3 {
    color: #1e40af;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.instructor-credentials {
    margin-bottom: 1rem;
}

.credential {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.2rem;
    font-weight: 500;
}

.instructor-bio {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.instructor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: #f8fafc;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
    overflow: hidden;
    max-width: 800px;
    margin: 3rem auto 0;
}

.pricing-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.pricing-details {
    padding: 2rem;
}

.detail-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #1e40af;
    min-width: 150px;
    flex-shrink: 0;
}

.detail-value {
    color: #475569;
    flex: 1;
}

.detail-item.highlight .detail-value {
    font-size: 1.2rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #1e40af;
}

.price-note {
    color: #64748b;
    margin-left: 0.5rem;
}

.subsidy-note {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.detail-value ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.detail-value li {
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1rem;
}

.detail-value li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: 0;
}

.subsidy-info {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem;
    margin: 2rem;
    border-radius: 10px;
    border-left: 4px solid #059669;
}

.subsidy-info h4 {
    color: #059669;
    margin-bottom: 0.8rem;
}

.subsidy-info p {
    color: #475569;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.contact-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.contact-form {
    color: #475569;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e40af;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.checkbox-item:hover {
    background-color: #f8fafc;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
}

.privacy {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.privacy-link {
    color: #3b82f6;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.2rem;
    margin-top: 1rem;
}

/* Fixed Banner */
.fixed-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    max-width: 280px;
}

.fixed-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    animation: none;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
}

.banner-text {
    flex: 1;
}

.banner-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

.banner-sub {
    font-size: 0.75rem !important;
    opacity: 0.9;
}

.banner-btn {
    background: white;
    color: #1e40af;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.banner-btn:hover {
    background: #f8fafc;
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: #94a3b8;
}

/* Responsive design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .fixed-banner {
        bottom: 10px;
        right: 10px;
        max-width: 260px;
    }
    
    .banner-content {
        padding: 0.8rem 1rem;
    }
    
    .banner-text p {
        font-size: 0.8rem;
    }
    
    .banner-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .transformation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .cycle-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cycle-arrow {
        transform: rotate(90deg);
    }
    
    .course-overview {
        grid-template-columns: 1fr;
    }
    
    .instructor-single .instructor-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.feature-card,
.instructor-card,
.issue-card,
.benefit-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Form success message */
.form-success {
    background: #f0fdf4;
    border: 2px solid #059669;
    color: #059669;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

/* Loading state */
.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    color: #1e40af;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #f1f5f9;
    color: #1e40af;
}

.modal-body {
    padding: 2rem;
    line-height: 1.7;
}

.modal-body h3 {
    color: #1e40af;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #475569;
    margin-bottom: 1rem;
}

.modal-body ul {
    color: #475569;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    margin: 1rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

.policy-date {
    color: #64748b;
    font-size: 0.9rem;
    text-align: right;
    margin: 0.5rem 0 !important;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}