:root {
    --aksigorta-primary-color: #F9C427;
    --aksigorta-secondary-color: #333;
    --aksigorta-font-primary: 'Inter', sans-serif;
    --aksigorta-font-size-large: 2.5rem;
    --aksigorta-font-size-medium: 1.2rem;
    --aksigorta-font-size-small: 1rem;
}

* {
    box-sizing: border-box;
    font-family: var(--aksigorta-font-primary);
}

.aksigorta-body {
    background-color: #f5f5f5;
    color: var(--aksigorta-secondary-color);
    margin: 0;
}

.aksigorta-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.aksigorta-hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.aksigorta-hero-section__left {
    flex: 1;
}

.aksigorta-hero-section__title {
    font-size: var(--aksigorta-font-size-large);
    color: var(--aksigorta-secondary-color);
    margin: 0;
}

.aksigorta-hero-section__subtitle {
    font-size: var(--aksigorta-font-size-medium);
    margin: 10px 0 20px;
}

.aksigorta-hero-section__buttons {
    display: flex;
    gap: 20px;
}

.aksigorta-button {
    display: inline-block;
    width: 222px;
    height: 55px;
    border-radius: 12px;
    font-size: var(--aksigorta-font-size-small);
    text-align: center;
    line-height: 55px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    border: none;
}

.aksigorta-button--primary {
    background-color: var(--aksigorta-primary-color);
}

.aksigorta-button--secondary {
    background-color: var(--aksigorta-secondary-color);
}

    .aksigorta-button--primary:hover,
    .aksigorta-button--secondary:hover {
        opacity: 0.9;
    }

.aksigorta-hero-section__right {
    flex: 1;
    text-align: right;
}

.aksigorta-hero-section__image {
    max-height: 309px;
}

.aksigorta-info-section {
    padding: 40px 0;
}

.aksigorta-info-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.aksigorta-info-section__list {
    list-style-type: disc; /* Siyah nokta (bullet) */
    margin-left: 20px; /* Liste elemanlarını biraz içeri almak */
    padding-left: 0;
}

    .aksigorta-info-section__list li {
        margin-bottom: 10px; /* Liste elemanları arasında boşluk */
        color: #333;
    }
/* Genel metin stili */
.zurich-info-section p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

/* Bold kelimelerin stili */
.aksigorta-info-section strong {
    font-weight: bold;
    color: #000;
}

/* Linklerin stili */
.aksigorta-info-section a {
    color: #007bff;
    text-decoration: none;
}

    .aksigorta-info-section a:hover {
        text-decoration: underline;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .aksigorta-hero-section {
        flex-direction: row;
        padding: 20px 0;
    }

    .aksigorta-hero-section__right {
        display: none;
    }
}

@media (max-width: 768px) {
    .aksigorta-hero-section {
        flex-direction: column;
        text-align: center;
    }

    .aksigorta-hero-section__buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .aksigorta-button {
        width: 100%;
        max-width: 300px;
        line-height: 55px;
    }

    .aksigorta-hero-section__image {
        display: none;
    }
}
