@import url("https://fonts.googleapis.com/css2?family=Lora:ital@0;1&family=Poppins:wght@400;500;600&display=swap");

:root {
    --primary-color: #f5f4f2;
    --text-dark: #57534e;
    --text-light: #78716c;
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: "Lora", serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.header__container {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header__content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: var(--header-font);
    color: white;
    line-height: 1.2;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    border-radius: 8px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

.heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 100px;
}

.circle-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #57534e;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
}

h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
    display: inline-block;
}

.image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.step-1,
.step-3 {
    flex: 1;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-left: 50px;
}

.sub-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.step-2 {
    margin-top: 100px;
}

.large-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 8px;
}

.step-3 {
    margin-top: 100px;
}


.section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
    font-family: "Ethereal", "Baskerville Old Face", "Baskerville", serif;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.items-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 20px;
    overflow-x: auto;
}

.item {
    width: 180px;
    text-align: center;
    flex-shrink: 0;
}

.item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.item p {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.table-heading {
    text-align: center;
    font-family: "Ethereal", "Baskerville Old Face", "Baskerville", serif;
    margin-top: 100px;
}

.comparison-table {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    font-family: "Ethereal", "Baskerville Old Face", "Baskerville", serif;
    background-color: #ffffff;
    margin-top: 50px;
    text-align: center;
}

.table-header {
    display: flex;
    background-color: #f3f4f6;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    color: #111827;
    padding: 15px 0;
    border-bottom: 2px solid #e5e7eb;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.column {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: #374151;
}

.features {
    background-color: #f9fafb;
    font-weight: bold;
    text-align: left;
    padding-left: 30px;
}

.design-pallete {
    color: #1f2937;
    font-weight: 500;
}

.traditional {
    color: #1f2937;
    font-weight: 500;
}

.checkmark {
    color: #c6a659;
    font-size: 20px;
    font-weight: bold;
}

.crossmark {
    color: #d9534f;
    font-size: 20px;
    font-weight: bold;
}

.comparison-table .table-header .column {
    padding: 15px 10px;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 14px;
    }

    .column {
        padding: 15px;
    }

    .features {
        padding-left: 15px;
    }
}

.faq-section {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    font-family: "Ethereal", "Baskerville Old Face", "Baskerville", serif;
}

.faq-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.faq {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-question button {
    width: 100%;
    padding: 15px;
    text-align: left;
    background-color: #fff;
    border: none;
    font-size: 16px;
    font-weight: lighter;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question button:hover {
    background-color: #f4f4f4;
}

.faq-question button:focus {
    outline: none;
}

.faq-question button::after {
    content: "▼";
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-question button.active::after {
    transform: rotate(-180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #555;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 15px 0;
    font-size: 16px;
}

/* Mobile-first base */
.container {
    width: 100%;
    padding: 0 15px;
}

/* Tablet */
@media (min-width: 768px) {
    .container {
        max-width: 750px;
        margin: 0 auto;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
}

/* Images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Hide desktop nav, show hamburger on mobile */
@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}