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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Header Section */
.header {
    background-color: #1F2937;
    color: #F9FAF8;
    padding: 20px 200px 100px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

.logo {
    font-size: 24px;
    color: #F9FAF8;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    color: #F9FAF8;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    color: #E5E7EB;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #3882F6;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2563eb;
}

.hero-image {
    flex: 1;
}

.image-placeholder {
    background-color: #6b7280;
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 8px;
}

/* Information Section */
.info-section {
    padding: 80px 200px;
    text-align: center;
}

.info-section h2 {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
    margin-bottom: 50px;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.info-item {
    max-width: 200px;
    text-align: center;
}

.info-image {
    width: 150px;
    height: 150px;
    border: 3px solid #3882F6;
    border-radius: 15px;
    margin: 0 auto 10px;
}

.info-item p {
    color: #6b7280;
    font-size: 16px;
}

/* Quote Section */
.quote-section {
    background-color: #E5E7EB;
    padding: 100px 200px;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-section p {
    font-size: 36px;
    font-style: italic;
    font-weight: 300;
    color: #1F2937;
    margin-bottom: 20px;
    text-align: left;
}

.quote-section cite {
    font-size: 20px;
    font-weight: bold;
    color: #1F2937;
    float: right;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 200px;
}

.cta-container {
    background-color: #3882F6;
    padding: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.cta-content p {
    color: #E5E7EB;
    font-size: 16px;
}

.cta-container .cta-button {
    border: 2px solid white;
    background-color: transparent;
}

.cta-container .cta-button:hover {
    background-color: white;
    color: #3882F6;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: #E5E7EB;
    text-align: center;
    padding: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header, .info-section, .quote-section, .cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .info-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
}