:root {
    --primary-color: #ff6347;
    /* Main color */
    --secondary-color: #ffa07a;
    /* Additional color */
    --text-color: #333;
    --background-color: #f4f4f4;
    --card-background: #fff;
    --button-color: #ff4500;
    --header-overlay: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}


header {
    background: url('images/img1.webp') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-content {
    background: var(--header-overlay);
    padding: 20px;
    border-radius: 10px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

header p {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

header a {
    background: var(--button-color);
    text-decoration: none;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section {
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

section p {
    font-size: 1.2em;
    color: var(--text-color);
}

section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.card {
    background: var(--card-background);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(33% - 40px);
    max-width: calc(33% - 40px);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.card h3 {
    color: var(--secondary-color);
    margin-top: 10px;
}

.card p {
    font-size: 1em;
    color: var(--text-color);
    margin-top: 10px;
}

blockquote {
    font-size: 1.2em;
    margin: 20px auto;
    font-style: italic;
    max-width: 800px;
    background: var(--card-background);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.testimonial img {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}

#download .download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

#download p {
    margin-bottom: 20px;
}

#download .download-buttons a {
    background: var(--button-color);
    text-decoration: none;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
}

footer nav {
    margin-bottom: 20px;
}

footer nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    /* color: var(--primary-color); */
}

footer .social-media {
    margin: 20px 0;
}

footer .social-media span {
    margin-right: 10px;
}

footer .social-media a img {
    width: 30px;
    height: 30px;
    margin: 0 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1.2em;
    }

    section h2 {
        font-size: 2em;
    }

    section p {
        font-size: 1em;
    }

    .card {
        flex: 1 1 calc(100% - 40px);
        max-width: calc(100% - 40px);
    }

    #download .download-buttons button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    footer .container {
        flex-direction: column;
    }
}


.page__title {
    text-align: center;
    padding: 250px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/img1.webp');
    font-size: 35px;
    color: #f9f9f9;
    margin-bottom: 0;
}

.page__section {
    text-align: left;
    padding: 10px 20px;
    background-color: azure;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent p {
    margin: 0;
}

.cookie-consent button {
    background-color: white;
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-consent button:hover {
    background-color: wheat;
}