* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.hero-description p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Buttons */
.cta-button,
.contact-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button:hover,
.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Intro Section */
.intro {
    padding: 4rem 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.intro-content p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8fafc;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

/* Value Proposition */
.value-proposition {
    padding: 5rem 0;
    background: white;
}

.value-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.value-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.value-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: #f8fafc;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(43, 174, 235, 0.25);
    border: 2px solid #2baeeb;
    background: linear-gradient(135deg, #f8fafc 80%, #e0f7ff 100%);
    text-align: center;
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 260px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    box-sizing: border-box;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(43, 174, 235, 0.35);
    border-color: #1d4ed8;
    background: linear-gradient(135deg, #e0f7ff 60%, #bae6fd 100%);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Closing Section */
.closing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.closing h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.closing p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.closing-tagline {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.closing-tagline p {
    font-size: 1.3rem;
    margin: 0;
    opacity: 1;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #94a3b8;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        gap: 1rem;
    }

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

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

    .hero {
        padding: 3rem 0;
    }

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

    .services-grid,
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .benefit-item {
        max-width: 100%;
        min-width: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .value-content h2,
    .closing h2 {
        font-size: 2rem;
    }

    .closing-tagline p {
        font-size: 1.1rem;
    }

    .benefit-item {
        flex: 1 1 45%;
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .service-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .cta-button,
    .contact-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        padding: 2rem 0;
    }

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

    .services,
    .benefits,
    .value-proposition {
        padding: 3rem 0;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

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

    .services-grid {
        gap: 2.5rem;
    }

    .service-card {
        max-width: 380px;
    }
}

@media (max-width: 900px) {
    .benefit-item {
        flex: 1 1 45%;
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1.2rem;
        max-width: 100%;
        min-width: 0;
    }
}