@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "century", sans-serif;
}

body {
    overflow-x: hidden;
    font-family: "century", sans-serif;
    background-color: rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to right, #fcf0e2, #eef2fe);
    padding-top: 20px;
    padding-bottom: 600px;
    margin: auto;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 0 20px;
}

.contant {
    text-align: center;
    width: 90%;
    max-width: 700px;
    margin: auto;
}

.contant .heading {
    font-size: 60px;
    font-weight: 700;
    color: #444549;
    line-height: 1.2em;
}
.contant .heading {
    margin-top: 10px;
}
.contant .pragraph {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #1d1415;
    margin-top: 20px;
}

#btn {
    display: block;
    width: 280px;
    margin: 40px auto 50px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 16px 26px;
    background-color: rgb(218, 134, 56);
    border-radius: 60px;
}

#btn:hover {
    background-color: #444549;
    color: white;
}

/* FAQ Section Styling */
.contant h2 {
    font-size: 22px;
    font-weight: 400;
    color: #444549;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.5;
    margin: 10px auto 20px;
}

/* FAQ Item Styling */
details {
    width: 90%;
    max-width: 700px;
    padding: 10px;
    margin: 10px auto;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #f6f7f8;
    transition: all 0.3s ease;
}

details[open] {
    background-color: #eef2fe;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

details p {
    color: #96999d;
    font-weight: 300;
    padding: 10px 0;
}

/* FAQ Summary */
summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
    list-style: none;
    color: #444549;
    background-color: #dbdbdb;
    padding: 10px;
    border-radius: 5px;
}

summary:focus {
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

/* FAQ Icons */
.control-icon {
    fill: #444549;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.control-icon-close {
    display: none;
}

details[open] .control-icon-expand {
    display: none;
}

details[open] .control-icon-close {
    display: inline;
    transition: 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1068px) {
    .contant .heading {
        font-size: 20px;
        line-height: 1.2em;
    }
}

@media (max-width: 768px) {
    .contant {
        margin-top: 50px;
    }
    .contant .heading {
        font-size: 40px;
        line-height: 1.1em;
    }
    .contant .pragraph {
        font-size: 18px;
        line-height: 1.4em;
    }
}

@media (max-width: 468px) {
    .contant .heading {
        font-size: 20px;
    }
    .contant .pragraph {
        font-size: 16px;
        line-height: 1.4em;
        padding: 0 10px;
    }
}
