﻿/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.main-content {
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* About page styles */
.hero-about {
    position: relative;
    height: 300px;
    background-image: url('../Images/about the website.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.261) 0%, rgb(0 0 0 / 78%) 68%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0 auto;
    }

.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.feature-list {
    list-style-type: disc;
    padding-left: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
}

.image-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .image-container img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

.info-box {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.italic {
    font-style: italic;
}

.conclusion-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 30px 0;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.logo-container {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.cta-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .cta-section p {
        max-width: 600px;
        margin: 0 auto 30px;
        font-size: 1.125rem;
    }

.cta-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .cta-button:hover {
        background-color: #333;
        text-decoration: none;
    }

/* Privacy page styles */
.privacy-header {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

    .privacy-header h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .privacy-header p {
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0 auto;
    }

.privacy-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.bold-text {
    font-weight: 700;
}

.updated-date {
    text-align: center;
    color: #777;
    font-size: 0.875rem;
    margin-top: 60px;
}

.back-section {
    padding: 30px 0;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #555;
    transition: color 0.3s;
}

    .back-link:hover {
        color: #000;
    }

    .back-link svg {
        margin-right: 8px;
    }

/* Responsive styles */
@media (min-width: 768px) {
    .hero-about {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-section {
        padding: 80px 0;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .lead-text {
        font-size: 1.125rem;
    }

    .conclusion-text {
        font-size: 1.125rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-header p {
        font-size: 1rem;
    }
}
