/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fb;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #f0f2f5;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-secondary:hover {
    background-color: #e0e4e8;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.main-nav a:hover,
.nav-link-highlight {
    color: #007bff;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background-color: #fff;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 36px;
    color: #003087;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Accordion Section */
.accordion-section {
    background-color: #003087;
    padding: 40px 0;
    color: #fff;
}

.accordion-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f5f7fb;
}

.accordion-title {
    font-size: 24px;
    color: #003087;
}

.accordion-toggle {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #003087;
}

.accordion-content {
    padding: 20px;
    background-color: #fff;
    transition: height 0.3s ease;
}

.accordion-content[hidden] {
    display: none;
}

.accordion-item.is-open .accordion-content {
    display: block;
}

.subscription-form-container h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #003087;
}

.subscription-form-container p {
    font-size: 16px;
    margin-bottom: 20px;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.phone-input {
    width: 100%;
    padding: 10px 40px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.phone-input:focus {
    outline: none;
    border-color: #007bff;
}

.form-group::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>');
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.btn-subscribe {
    align-self: flex-start;
}

.form-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.form-agreement a {
    color: #007bff;
    text-decoration: none;
}

.form-agreement a:hover {
    text-decoration: underline;
}

/* Footer Styles */
.site-footer {
    background-color: #fff;
    padding: 20px 0;
    border-top: 1px solid #e0e4e8;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: #333;
}

.footer-nav a:hover {
    color: #007bff;
}

.footer-contact a {
    color: #007bff;
    text-decoration: none;
}

.footer-contact span {
    display: block;
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}