* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.main-header {
    background: #1a2a3a;
    color: #fff;
    padding: 10px 0; 
    border-bottom: 4px solid #2ecc71;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-text {
    flex: 1;
}

.header-text h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.header-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* height: 200px; */
}

.main-banner-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    object-fit: cover;
}

/* SECTIONS */
.section-row {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}

/* This class visually swaps the order of items.
   It creates the alternating "Zig-Zag" effect.
*/
.flex-reverse {
    flex-direction: row-reverse;
}

.flex-item {
    flex: 1;
}

.section-img {
    width: 100%;
    height:400px;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    display: block;
    margin: auto;
}

.section-img:hover {
    transform: scale(1.02);
}

/* TITLES */
.border-title {
    border-left: 5px solid #2ecc71;
    padding-left: 15px;
    margin-bottom: 20px;
    color: #1a2a3a;
    font-size: 1.8rem;
}

.center-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1a2a3a;
    font-size: 1.8rem;
}

/* PENALTIES SECTION */
.penalties {
    padding: 60px 0;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin: 40px 0;
}

.penalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.penalty-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-top: 5px solid #e74c3c;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.penalty-card:hover {
    transform: translateY(-5px);
}

.penalty-card h3 {
    margin-bottom: 10px;
    color: #1a2a3a;
}

.price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 5px;
}

/* LISTS */
.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2ecc71;
    font-weight: bold;
}
.contact-btn {
    display: inline-block;
    background: #2ecc71;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

.contact-btn:hover {
    background: #27ae60;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 40px;
    background: #ecf0f1;
    margin-top: 40px;
    border-radius: 10px;
}

/* FOOTER */
.footer {
    background: #1a2a3a;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content,
    .section-row,
    .section-row.flex-reverse {
        flex-direction: column; /* Force column layout on mobile */
        text-align: center;
        gap: 30px;
    }

    /* Ensure image max-width is responsive */
    .main-banner-img,
    .section-img {
        max-width: 100%;
    }

    .header-image {
        justify-content: center;
    }

    .border-title {
        border-left: none;
        border-bottom: 4px solid #2ecc71;
        padding-bottom: 10px;
        display: inline-block;
    }

    .check-list {
        text-align: left; /* Keep lists readable */
    }
}