/* Custom styles for insurance landing page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header styles */
.header {
    background-color: #1e3a8a;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.flag-icon {
    height: 1.25rem;
    width: 2rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.advertorial {
    font-style: italic;
    font-size: 0.875rem;
    padding-left: 0.5rem;
}

/* Main content */
.main {
    padding: 1.5rem 0.75rem;
}

h1 {
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    color: #1e40af;
    line-height: 1.3;
}

@media (min-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .brand {
        font-size: 1.5rem;
    }
    
    .flag-icon {
        height: 1.5rem;
        width: 2.5rem;
    }
    
    .main {
        padding: 2rem 1rem;
    }
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-block {
    background-color: #f0f9ff;
    border-radius: 0.5rem;
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quote-block {
    background-color: #ecfdf5;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #d1fae5;
}

.quote-block p {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.highlight {
    font-weight: bold;
    color: #047857;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Buttons */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.button {
    width: 100%;
    background-color: #10b981;
    color: white;
    padding: 1.125rem;
    font-weight: bold;
    font-size: 1.25rem;
    text-align: center;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button:hover, .button:active {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Alert box */
.alert {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    color: #92400e;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0 0.25rem 0.25rem 0;
    font-size: 1.05rem;
}

.alert-title {
    font-weight: bold;
}

/* Image container */
.image-container {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    border-radius: 0.5rem;
}

/* Footer */
.footer {
    background-color: #f3f4f6;
    color: #6b7280;
    font-size: 0.75rem;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
}

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: underline;
}

.footer-copyright {
    margin-bottom: 0.5rem;
}

.footer-address {
    margin-bottom: 0.25rem;
}

.footer-contact {
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    font-size: 0.7rem;
} 