/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Design System */
:root {
    /* Primary Colors */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', 'Noto Sans JP', system-ui, sans-serif;
    --font-display: 'Inter', 'Noto Sans JP', system-ui, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--gray-50);
    font-weight: 400;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-sm {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-lg {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Password Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    padding: var(--space-4xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    max-width: 480px;
    width: 90%;
    box-shadow: var(--shadow-2xl);
    transform: translateY(-20px);
    animation: modalSlideIn 0.4s ease-out 0.1s both;
    border: 1px solid var(--gray-200);
}

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

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

.modal-content h2 {
    color: var(--primary-600);
    margin-bottom: var(--space-lg);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.modal-content p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    font-size: 1rem;
}

.modal-content input {
    width: 100%;
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    background: var(--gray-50);
    outline: none;
}

.modal-content input:focus {
    border-color: var(--primary-500);
    background: white;
    box-shadow: 0 0 0 3px var(--primary-100);
}

.modal-content button {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-lg) var(--space-2xl);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.error-message {
    color: #e74c3c;
    margin-top: 10px;
    font-size: 14px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.navbar {
    padding: var(--space-lg) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.logo h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2xl);
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    position: relative;
    letter-spacing: -0.01em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--gray-700);
    margin: 3px 0;
    transition: var(--transition-base);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: var(--space-4xl) 0 8rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(5deg); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleSlide 1s ease-out 0.5s both;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.6;
    animation: heroSubtitleSlide 1s ease-out 0.7s both;
}

@keyframes heroSubtitleSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-cta {
    margin-top: var(--space-2xl);
    animation: heroCTASlide 1s ease-out 0.9s both;
}

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    text-decoration: none;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; width: 4px; height: 4px; animation-delay: 0s; }
.particle:nth-child(2) { top: 80%; left: 80%; width: 6px; height: 6px; animation-delay: 2s; }
.particle:nth-child(3) { top: 40%; left: 70%; width: 3px; height: 3px; animation-delay: 4s; }
.particle:nth-child(4) { top: 60%; left: 30%; width: 5px; height: 5px; animation-delay: 1s; }
.particle:nth-child(5) { top: 10%; left: 60%; width: 4px; height: 4px; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
section {
    padding: var(--space-4xl) 0;
    position: relative;
}

section:nth-child(even) {
    background: white;
}

section:nth-child(odd) {
    background: var(--gray-50);
}

/* Section Headers */
h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-700);
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

p:last-child {
    margin-bottom: 0;
}

/* Typography emphasis */
strong {
    font-weight: 600;
    color: var(--gray-900);
}

h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.3rem;
    color: #1e3d6f;
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.1rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Services Section */
.problem-section {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--blue-50) 100%);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-4xl);
    border: 1px solid var(--primary-200);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 0 3px 3px 0;
}

.failure-points {
    margin: var(--space-xl) 0;
}

.failure-points ul {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    border: 1px solid #fee2e2;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.failure-points ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 0 3px 3px 0;
}

.failure-points li {
    color: #dc2626;
    font-weight: 500;
    padding-left: var(--space-xl);
}

.failure-points li:before {
    content: "⚠";
    color: #ef4444;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: var(--space-md);
}

.service-grid, .advantage-grid, .specialized-grid, .strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.service-item, .advantage-item, .specialized-item, .strength-item {
    background: white;
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-item::before, .advantage-item::before, .specialized-item::before, .strength-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-item:hover, .advantage-item:hover, .specialized-item:hover, .strength-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-200);
}

.service-item:hover::before, .advantage-item:hover::before, .specialized-item:hover::before, .strength-item:hover::before {
    transform: scaleX(1);
}

.service-icon, .specialized-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    display: block;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-base);
}

.service-item:hover .service-icon, .specialized-item:hover .specialized-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-number {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: block;
    transition: transform var(--transition-base);
}

.advantage-item:hover .advantage-number {
    transform: scale(1.2);
}

.specialized-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.specialized-item ul {
    margin-top: var(--space-lg);
}

.specialized-item li, .failure-points li {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    padding-left: var(--space-xl);
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.specialized-item li:last-child, .failure-points li:last-child {
    border-bottom: none;
}

.specialized-item li:before {
    content: "→";
    color: var(--primary-500);
    font-weight: 600;
    position: absolute;
    left: 0;
    top: var(--space-md);
    transition: all var(--transition-base);
}

.specialized-item li:hover {
    color: var(--primary-600);
    padding-left: var(--space-2xl);
}

.specialized-item li:hover:before {
    color: var(--primary-600);
    transform: translateX(4px);
}

/* Team Section */
.ceo-message {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-4xl);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ceo-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
}

.detailed-profile {
    background: white;
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-2xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.detailed-profile:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.profile-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.profile-section:last-child {
    border-bottom: none;
}

.global-experience {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.member-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #2c5aa0;
}

/* Company Section */
.company-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.company-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.company-table td:first-child {
    background: #f8f9fa;
    font-weight: bold;
    color: #2c5aa0;
    width: 200px;
}

.partners {
    background: #f1f8ff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.partners ul {
    list-style: none;
    padding-left: 0;
}

.partners li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.partners li:before {
    content: "🤝";
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
}

.contact h2::after {
    background: white;
}

.contact-info {
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Closing Section */
.closing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.closing h2 {
    color: white;
    font-size: 2rem;
    line-height: 1.4;
}

.closing h2::after {
    background: white;
}

/* Footer */
footer {
    background: #1e3d6f;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #64b5f6;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c5aa0;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

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

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

    h2 {
        font-size: 2rem;
    }

    .service-grid, .advantage-grid, .specialized-grid, .strength-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .company-table td:first-child {
        width: auto;
    }

    .modal-content {
        margin: 20px;
        padding: 30px;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .service-item, .advantage-item, .specialized-item, .strength-item {
        padding: 1.5rem;
    }

    .company-table {
        font-size: 0.9rem;
    }

    .company-table td {
        padding: 0.8rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

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

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item, .advantage-item, .specialized-item, .strength-item, .member-item {
    animation: fadeIn 0.6s ease forwards;
}

/* Accessibility improvements */
.nav-menu a:focus,
.modal-content button:focus {
    outline: 2px solid #64b5f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .modal,
    .hamburger,
    .nav-menu {
        display: none !important;
    }
    
    body {
        background: white !important;
    }
    
    .hero,
    .contact,
    .closing {
        background: white !important;
        color: black !important;
    }
}