@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
}

body {
    font-family: 'Nunito', 'Comfortaa', sans-serif;
    background: #f8f8f8;
    color: #333;
    line-height: 1.6;

}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.shrink {
    padding: 0.5rem 2rem;
}

.logo-header {
    height: 40px;
    object-fit: cover;
    vertical-align: middle;
}

header.shrink .logo-header {
    height: 20px;
}

header h1 {
    font-size: 1.8rem;
    transition: font-size 0.3s ease;
}

header.shrink h1 {
    font-size: 1.2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* NAVIGATION */
nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #ff8500;
    font-weight: bold;
    font-size: 1rem;
}

/* MAIN CARDS */
.cards-container {
    width: 90%;
    max-width: 800px;
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    padding: 1rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
}

.card img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.card h2 {
    color: #ff8500;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.card p,
.card li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
     text-align: left; /* Add this line */
}

.card ol {
    text-align: left;
    padding-left: 1.2rem;
}

.card ul {
    display: flex;
    gap: 2rem;
    /* space between items */
    justify-content: center;
    /* optional: center the items */
    padding: 0;
    list-style: none;
    /* remove bullet points */
    margin-top: 1rem;
    /* spacing from heading */
}

.card .ul-feedback {
    display: block;
    /* or just remove 'display' entirely */
    padding-left: 1.5rem;
    /* adds space for bullets */
    list-style-type: disc;
    /* shows dots (default) */
}

.card .ul-feedback li {
    margin-bottom: 0.5rem;
    /* optional: spacing between items */
}

.card .hero-img {
    width: 600px;
    /* bigger than the card */
    height: 360px;
    object-fit: cover;
    display: block;
}

/* FOOTER */
footer {
    padding: 2rem;
    text-align: center;
    background: #fff;
    margin-top: 5rem;
    border-top: 1px solid #ddd;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

footer a {
    color: #ff8500;
    text-decoration: none;
}


/* NAV BUTTONS (‹ ›) */
.nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

header.shrink .nav-btn {
    height: 30px;
    width: 30px;
}

.nav-btn:hover {
    background: #ff8500;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
}