* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #faf8f5;
    color: #1c1c1c;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
    position: relative;
    /*background: url('/images/ISTANBUL\ HEADER\ MAIN.jpeg') center/cover no-repeat;*/
    color: #fff;
    text-align: center;
    padding: 130px 15px;
}

.hero-ephesus {
    position: relative;
    background: url('/images/Ephesus\ Header\ photo.jpeg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 130px 15px;
}

.hero-cappadocia {
    position: relative;
    background: url('/images/Main Cappadocia.jpeg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 130px 15px;
}

.hero-turkey {
    position: relative;
    background: url('/images/Turkey\ main\ page.jpeg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 130px 15px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.662);
    z-index: 0;
}

.hero h1,
.hero p,
.hero button,a {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero p {
    max-width: 750px;
    margin: 20px auto;
    font-size: 1.1rem;
}

.btn-guidiko,
.btn-outline-guidiko {
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-guidiko {
    background-color: #008060;
    color: #fff;
    border: none;
    padding: clamp(10px, 1.5vw, 12px) clamp(30px, 5vw, 55px);
}

.btn-guidiko:hover {
    background-color: #006d51;
    color: #fff;
}

.btn-outline-guidiko {
    border: 1.5px solid #008060;
    color: #008060;
    background: transparent;
    padding: clamp(10px, 1.5vw, 12px) clamp(30px, 5vw, 55px);
}

.btn-outline-guidiko:hover {
    background-color: #008060;
    color: #fff;
}

/* Icons Row */
.icon-row {
    background-color: #fff;
    padding: 30px 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    /* background-color: orange; */
}

.icon-item {
    text-align: center;
    font-size: 0.95rem;
    color: #222;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* background-color: red; */
    width: 278px;
}

.icon-item i {
    font-size: 26px;
    color: #008060;
}

/* About Section */
.about {
    padding: 80px 15px;
}


.about img {
    width: 100%;
    height: auto !important;
    /*object-fit: cover;*/
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    display: block;
    margin: 0 auto;
    max-width: 530px;
}

.about h2 {
    font-weight: 700;
    margin-bottom: 25px;
}

.about p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 80px 0px;
}

.faq-section h2 {
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    border-radius: 10px !important;
    background-color: #f9f9f9;
    font-weight: 600;
    color: #222;
    line-height: 25px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f2f8f6;
    color: #008060;
}

.accordion-body {
    background: #fff;
    border-top: 1px solid #eee;
    border-radius: 0 0 10px 10px;
}

footer {
    text-align: center;
    padding: 40px 15px;
    color: #555;
    background-color: #faf8f5;
    font-size: 0.95rem;
    border-top: 1px solid #eaeaea;
}

@media (max-width: 992px) {
    .icon-row {
        padding: 25px 40px;
        /* responsive for tablets */
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .icon-row {
        padding: 20px 25px;
        /* tighter on small screens */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .about img {
        margin-bottom: 25px;
    }

    .about h2 {
        margin-top: 40px;
    }
}