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

body {
    font-family: avenir-lt-w01_35-light1475496, sans-serif;
    line-height: 1.4em;
    color: #333;
    font-weight: normal;
    font-size: 20px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #2196F3;
    height: 80px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 120px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #90CAF9;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1976D2;
}

.nav-social {
    color: #90CAF9 !important;
    font-size: 16px;
}

.login-btn {
    background-color: #2196F3;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s;
    font-size: 13px;
    font-weight: 600;
}

.login-btn:hover {
    background-color: #1976D2;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 60px 0px;
    background: linear-gradient(135deg, rgba(245, 108, 66, 0.35) 0%, rgba(240, 128, 64, 0.35) 100%),
                url('images/background-header.png') center/cover;
    background-attachment: scroll;
    height: 450px;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    width: 700px;
    height: 700px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.9;
}

.hero-content {
    z-index: 2;
    position: relative;
    flex: 0 0 auto;
    margin-left: 300px;
}

.hero-logo img {
    height: 120px;
    width: auto;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 0.95;
    font-style: italic;
}

.hero-title-red {
    color: #E85A30;
}

.hero-title-blue {
    color: #1e4d7b;
}

.hero-line {
    width: 120px;
    height: 12px;
    background-color: #E85A30;
    margin-bottom: 25px;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 28px;
    color: #1e4d7b;
    line-height: 1.3;
    font-weight: 400;
}

.hero-subtitle strong {
    font-weight: 700;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    min-height: 300px;
}

.hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    overflow: visible;
}

.hero-image-placeholder img {
    width: 150%;
    height: 150%;
    object-fit: contain;
}

/* Quote and Stats Section */
.quote-and-stats {
    background: linear-gradient(135deg, rgba(245, 108, 66, 0.92) 0%, rgba(240, 128, 64, 0.92) 100%),
                url('images/background-quote.jpg') center/cover;
    background-attachment: scroll;
}

/* Quote Section */
.quote-section {
    padding: 80px 60px;
    text-align: center;
    color: white;
}

.quote-text {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
}

.quote-author {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.95;
}

.quote-description {
    font-size: 22px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* Stats Section */
.stats {
    background: transparent;
    padding: 0 180px 80px 180px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    text-align: center;
    color: white;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideUpStats 0.6s ease-out forwards;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

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

.stat-icon {
    font-size: 44px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    width: 60px;
    height: 60px;
    align-items: center;
}

.stat-icon svg {
    fill: white;
    opacity: 0.8;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

/* Why Section */
.why-section {
    padding: 100px 60px;
    background-color: #fafafa;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
    animation: bookOpen 0.8s ease-out;
}

.section-subtitle {
    text-align: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
    animation: bookOpen 0.8s ease-out 0.1s backwards;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.service-card {
    background-color: #F56C42;
    color: white;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 240px;
    box-shadow: 0 8px 20px rgba(245, 108, 66, 0.15);
    background-size: cover;
    background-position: center;
    animation: bookOpen 0.8s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.3s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) {
    animation-delay: 0.5s;
}

.service-card:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes bookOpen {
    from {
        opacity: 0;
        transform: rotateY(-90deg);
        transform-origin: left center;
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(245, 108, 66, 0.25);
}

.consultation-text {
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

/* Buttons */
.button-group {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn {
    padding: 14px 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background-color: #F56C42;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 108, 66, 0.25);
}

.btn:hover {
    background-color: #E85A30;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 108, 66, 0.35);
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgb(61, 155, 233) 0%, rgb(61, 155, 233) 100%);
    color: white;
    padding: 40px 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    transition: color 0.3s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #F56C42;
}

/* Responsive */
@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }

    nav {
        padding: 15px 40px;
    }

    .hero {
        padding: 40px;
    }

    .stats {
        padding: 60px 40px;
        gap: 40px;
    }

    .hero-content {
        margin-left: 150px;
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
        gap: 30px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        flex-direction: column;
        padding: 30px;
        min-height: auto;
    }

    .hero-content {
        margin-left: 0;
    }

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

    .hero-image {
        height: 300px;
        min-height: 300px;
    }

    .quote-section {
        padding: 50px 30px;
    }

    .why-section {
        padding: 60px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .hero-bg-circle {
        width: 300px;
        height: 300px;
    }
}