/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Dark background */
    color: #f0f0f0; /* Light text */
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

a {
    color: #00bfff; /* Bright blue for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #000; /* Black header */
    padding: 15px 0;
    border-bottom: 2px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #ff4500; /* Bright orange for logo */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #f0f0f0;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00bfff;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    background: linear-gradient(to right, #1a1a1a, #333333); /* Gradient background */
    color: #f0f0f0;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff4500;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 45%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5); /* Blue glow */
}

.btn {
    display: inline-block;
    background-color: #00bfff; /* Bright blue button */
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #009acd;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Mistakes Section */
.mistakes-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #222;
}

.mistakes-section h2 {
    font-size: 36px;
    color: #ff4500;
    margin-bottom: 40px;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mistake-item {
    background-color: #333;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.3); /* Orange glow */
    transition: transform 0.3s ease;
}

.mistake-item:hover {
    transform: translateY(-5px);
}

.mistake-item img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Cover the area, cropping if necessary */
    border-radius: 5px;
    margin-bottom: 15px;
}

.mistake-item h3 {
    font-size: 24px;
    color: #00bfff;
    margin-bottom: 10px;
}

.mistake-item p {
    font-size: 16px;
    color: #ccc;
}

/* Footer */
footer {
    background-color: #000;
    color: #f0f0f0;
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #333;
    font-size: 14px;
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
    color: #f0f0f0;
    text-align: center;
}

.contact-section h1 {
    font-size: 40px;
    color: #ff4500;
    margin-bottom: 30px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #222;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #00bfff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #333;
    color: #f0f0f0;
    font-size: 16px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #00bfff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-container button {
    background-color: #ff4500;
    color: #1a1a1a;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form-container button:hover {
    background-color: #e03e00;
    transform: translateY(-3px);
}

/* Policy Pages */
.policy-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.policy-content h1 {
    font-size: 36px;
    color: #ff4500;
    margin-bottom: 30px;
    text-align: center;
}

.policy-content h2 {
    font-size: 28px;
    color: #00bfff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    margin-bottom: 15px;
    color: #ccc;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #ccc;
}

.policy-content ul li {
    margin-bottom: 8px;
}

/* About Page */
.about-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.about-section h1 {
    font-size: 36px;
    color: #ff4500;
    margin-bottom: 30px;
    text-align: center;
}

.about-section p {
    margin-bottom: 15px;
    color: #ccc;
}

.about-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #ccc;
}

.about-section ul li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }

    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .mistakes-section h2,
    .contact-section h1,
    .policy-content h1,
    .about-section h1 {
        font-size: 30px;
    }

    .mistake-item h3 {
        font-size: 20px;
    }
}
