/* Main container */
.container {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f9f8f6;
    color: #222;
    min-height: 100vh;
}

/* Header styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px 0 40px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 2px 16px #0001;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.logo-title {
    font-weight: bold;
    font-size: 18px;
    display: block;
}
.logo-subtitle {
    font-size: 14px;
    color: #3a3a3a;
    display: block;
}

.header nav {
    display: flex;
    gap: 28px;
}
.header nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}
.header nav a:hover {
    color: #e76f51;
}

.cta-top, .cta-main {
    background: #e76f51;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-top:hover, .cta-main:hover {
    background: #d35436;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-top:active, .cta-main:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-main {
    padding: 14px 32px;
    font-size: 18px;
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px 40px 40px;
    gap: 40px;
}
.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #22334a;
}
.hero-text p {
    font-size: 20px;
    margin-bottom: 28px;
}
.hero-img img {
    width: 320px;
    max-width: 100%;
    border-radius: 24px;
    transition: transform 0.3s ease;
}
.hero-img img:hover {
    transform: scale(1.02);
}

/* Why section */
.why {
    background: #fff;
    margin: 0 40px;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 2px 16px #0001;
    margin-top: 32px;
}
.why h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #22334a;
}
.why-cards {
    display: flex;
    gap: 32px;
    justify-content: space-between;
}
.card {
    background: #f9f8f6;
    border-radius: 16px;
    padding: 28px 20px;
    flex: 1;
    text-align: center;
    box-shadow: 0 1px 8px #0001;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card img {
    width: 48px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}
.card:hover img {
    transform: scale(1.1);
}
.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #22334a;
}
.card p {
    font-size: 15px;
    color: #444;
}

/* About section */
.about {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 48px 40px 0 40px;
    padding: 40px 0;
}
.about-img img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 12px #0001;
    transition: transform 0.3s ease;
}
.about-img img:hover {
    transform: scale(1.05);
}
.about-text h2 {
    font-size: 24px;
    color: #22334a;
    margin-bottom: 8px;
}
.about-text h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #22334a;
}
.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
}

/* Footer */
footer {
    background: #22334a;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    border-radius: 0 0 20px 20px;
    margin: 40px 40px 0 40px;
    font-size: 15px;
}

/* Responsive styles */
@media (max-width: 900px) {
    .hero, .about {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .why-cards {
        flex-direction: column;
        gap: 20px;
    }
    .why, .about, .hero {
        margin: 0 10px;
        padding: 24px 0;
    }
    footer {
        margin: 24px 10px 0 10px;
        flex-direction: column;
        gap: 8px;
    }
} 