/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

/* Body Background and Layout */
body {
    background-color: #fdfbf7; /* Soft beige */
    color: #4b3832; /* Rich brown */
    line-height: 1.6;
}

/* Header Section */
.header {
    background: linear-gradient(to bottom right, #a37d6d, #e8d4c0); /* Light brown gradient */
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

.header .container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header .container p {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Section Styling */
.embed-container {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #fff; /* White background */
    border-radius: 8px;
    margin: 2rem auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #a37d6d; /* Light brown text */
}

.section-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #7b6c65; /* Soft brown-grey */
}

/* Button Styling */
.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    color: #fff;
    background: linear-gradient(to right, #d1a38e, #a37d6d); /* Light brown gradient */
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.button:hover {
    background: linear-gradient(to right, #a37d6d, #d1a38e);
    transform: scale(1.05);
}

/* Footer Styling */
.footer {
    background-color: #4b3832; /* Rich brown */
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 3rem;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header .container h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .button {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header .container h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .button {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .header .container h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .button {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
}


/* Logo Styling */
.logo {
    width: 60px;
    height: auto;
    margin-right: 1rem;
    display: inline-block;
    vertical-align: middle;
}

/* Header Layout with Logo */
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Button Icon Styling */
.icon {
    width: 20px;
    height: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Responsive Adjustments for Logo */
@media (max-width: 768px) {
    .logo {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 40px;
    }
}
