:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #8b5cf6;
    --accent: #0ea5e9;
    --light: #f3f4f6;
    --dark: #111827;
    --text: #1f2937;
    --text-light: #f9fafb;
    --card-light: #ffffff;
    --card-dark: #1e293b;
    --success: #10b981;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 12px;
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

body.dark-mode {
    background-color: var(--dark);
    color: var(--text-light);
}

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

section {
    padding: 5rem 0;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Floating Dark Mode Toggle */
.floating-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.8rem;
    border: none;
}

.floating-toggle:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

body.dark-mode header {
    background: rgba(17, 24, 39, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.logo-text {
    position: relative;
}

.cloud-part {
    color: var(--secondary);
    display: inline-block;
    position: relative;
    animation: cloudFloat 4s ease-in-out infinite;
}

.logo:hover .cloud-part {
    animation: cloudFloat 1s ease-in-out infinite;
}

.logo:active {
    transform: scale(0.95);
}

.click-icon {
    position: absolute;
    top: -10px;
    right: -15px;
    font-size: 1.2rem;
    animation: floatClick 3s infinite ease-in-out;
    color: var(--secondary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.nav-links a:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

body.dark-mode .nav-links a {
    color: var(--text-light);
}

body.dark-mode .nav-links a:hover {
    background: rgba(37, 99, 235, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

body.dark-mode .mobile-menu-btn {
    color: var(--text-light);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(200, 200, 200, 0.3);
    overflow: hidden;
}

body.dark-mode .scroll-progress {
    background: rgba(50, 50, 50, 0.5);
}

.scroll-progress-bar {
    position: absolute;
    right: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: width 0.2s ease;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f3f4f6' fill-opacity='1' d='M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
}

body.dark-mode .hero::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23111827' fill-opacity='1' d='M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-light);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

body.dark-mode .service-card {
    background: var(--card-dark);
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Why Choose Us */
.why-us {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    position: relative;
}

body.dark-mode .why-us {
    background: linear-gradient(135deg, #0c4a6e, #082f49);
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

body.dark-mode .benefit-item {
    background: rgba(30, 41, 59, 0.8);
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
}

/* Tech Stack */
.tech-stack {
    text-align: center;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tech-badge {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.tech-badge:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
}

body.dark-mode .testimonials {
    background: linear-gradient(135deg, #1e1b4b, #0f172a);
}

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

.testimonial-slide {
    background: var(--card-light);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}

body.dark-mode .testimonial-slide {
    background: var(--card-dark);
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    color: rgba(37, 99, 235, 0.2);
}

.testimonial-content::before {
    top: -30px;
    left: -20px;
}

.testimonial-content::after {
    bottom: -60px;
    right: -20px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Clients Section */
.clients {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

body.dark-mode .clients {
    background: linear-gradient(135deg, #064e3b, #022c22);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.client-card {
    background: var(--card-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

body.dark-mode .client-card {
    background: var(--card-dark);
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--success), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.client-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.client-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.client-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

body.dark-mode .stat {
    background: rgba(37, 99, 235, 0.2);
}

.clients-cta {
    text-align: center;
    margin-top: 3rem;
}

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

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
}

body.dark-mode .contact {
    background: linear-gradient(135deg, #083344, #164e63);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-light);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

body.dark-mode .contact-container {
    background: var(--card-dark);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: #1e293b;
    border-color: #334155;
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

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

.submit-btn {
    justify-self: start;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
    display: block;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

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

/* Konami Code Banner */
.konami-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #8b5cf6, #ec4899, #f59e0b, #10b981);
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: 800;
    font-size: 1.5rem;
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.konami-banner.show {
    transform: translateY(0);
}

/* Bug Game Overlay */
.game-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.game-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.game-container {
    background: #1e293b;
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    text-align: center;
    position: relative;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.game-title {
    color: white;
    font-size: 2rem;
}

.score-display {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
}

.game-area {
    position: relative;
    height: 400px;
    background: #0f172a;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
}

.bug {
    position: absolute;
    font-size: 2.5rem;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease;
}

.bug:hover {
    transform: scale(1.2);
}

.exit-game {
    background: #ef4444;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.exit-game:hover {
    background: #dc2626;
    transform: scale(1.05);
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

/* Logo Animations */
@keyframes cloudFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@keyframes floatClick {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-avatar {
        margin: 0 auto;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow);
    }
    
    body.dark-mode .nav-links {
        background: var(--dark);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .testimonial-slide {
        padding: 2rem;
    }
    
    .floating-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo .click-icon {
        font-size: 1rem;
        top: -8px;
        right: -12px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-container {
        padding: 2rem 1.5rem;
    }
    
    .floating-toggle {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn:active {
    transform: translateY(1px);
}

/* New animation styles */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

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

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.it-icon {
    position: absolute;
    opacity: 0.85;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.it-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.laptop {
    animation: float 8s ease-in-out infinite;
    top: 50%;
    left: 40%;
    width: 100px;
}

.server {
    animation: bounce 6s ease-in-out infinite;
    top: 30%;
    left: 20%;
    width: 80px;
}

.router {
    animation: rotate 7s ease-in-out infinite;
    top: 60%;
    left: 15%;
    width: 70px;
}

.cloud {
    animation: pulse 9s ease-in-out infinite;
    top: 20%;
    left: 70%;
    width: 120px;
}

.wrench {
    animation: wiggle 4s ease-in-out infinite;
    top: 65%;
    left: 75%;
    width: 60px;
}

.cable {
    animation: shake 5s ease-in-out infinite;
    top: 45%;
    left: 65%;
    width: 50px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    display: block;
}