/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f7f8fa; /* Light, neutral background for the body */
}

/* Header Styles */
header {
    background: #4a90e2; /* Soft blue for a calm and professional look */
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff; /* White text for contrast */
    font-weight: bold;
}

/* Hero Section Styles */
.hero {
    background-color: #6cb2eb; /* Calming blue tone for the hero section */
    padding: 60px 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.btn, .btn-secondary, .btn-download {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background: #ff6f61; /* Warm, inviting coral color */
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover, .btn-secondary:hover, .btn-download:hover {
    background: #ff8a80; /* Slightly lighter coral for hover effect */
}

.btn-download {
    margin-top: 10px;
    background-color: #74c7b8; /* Complementary teal for download buttons */
}

/* Section Styles */
.section {
    padding: 40px 0;
    text-align: center;
    background: #ffe7d9; /* Soft peach for a warm and friendly section background */
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.section p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.btn-secondary {
    background: #ff6f61;
}

/* Description Section Styles */
.description {
    background-color: #e0f7fa; /* Light aqua for a fresh, clean feel */
    padding: 40px 0;
    text-align: center;
}

.description h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.description p {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Media Section Styles */
.media-section {
    padding: 40px 0;
    background-color: #f7f8fa; /* Neutral background to keep the focus on media content */
}

.media-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.media-item {
    width: 300px;
    text-align: center;
}

.media-item img, .media-item video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Contact Section Styles */
.contact {
    padding: 40px 0;
    background-color: #4a90e2; /* Consistent blue theme for contact section */
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact button {
    width: 100%;
    padding: 10px;
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #ff8a80;
}

/* Payment Options Styles */
.payment {
    padding: 40px 0;
    background-color: #e0f7fa; /* Light aqua background for payment section */
    text-align: center;
}

.payment h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.payment p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.payment-methods {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.payment-methods li {
    font-size: 1.5rem;
    color: #333;
}

/* Contact Information Section Styles */
.contact-info {
    padding: 20px 0;
    background-color: #6cb2eb; /* Light blue for a calm footer section */
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
    color: #fff;
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    padding: 20px 0;
    background-color: #333;
    text-align: center;
    color: #fff;
}

footer p {
    margin: 0;
}
