/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

a {
    text-decoration: none;
    color: #e63946;
    transition: all 0.3s ease;
}

a:hover {
    color: #c1121f;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: #333;
    font-weight: 600;
    padding: 10px 5px;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover, nav ul li a.active {
    color: #e63946;
    border-bottom: 2px solid #e63946;
}

/* Main Page Styles */
main {
    padding: 40px 0;
}

h1, h2, h3, h4 {
    color: #1d3557;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

section {
    margin-bottom: 60px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #f1faee;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 60px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1d3557;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #457b9d;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.download-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e63946;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #c1121f;
    color: #fff;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    text-align: center;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 400px; /* Adjust width as needed */
    height: 150px; /* Adjust height as needed */
    object-fit: cover; /* Ensures the image maintains aspect ratio */
}

/* Optional: Add a media query to adjust images on different screen sizes */
@media (max-width: 768px) {
    .feature-icon img {
        width: 100%;  /* Use full width for smaller screens */
        height: auto; /* Adjust height proportionally */
    }
}


/* Screenshots Section */
.screenshots {
    text-align: center;
}

.screenshot-carousel {
    display: flex;
    overflow-x: hidden;
    gap: 20px;
    margin: 30px 0;
}

.screenshot {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-control {
    background-color: #457b9d;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: #1d3557;
}

/* Testimonials Section */
.testimonials {
    text-align: center;
}

.testimonial-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    font-weight: 600;
    color: #457b9d;
}

/* Download Section */
.download {
    text-align: center;
    background-color: #f1faee;
    padding: 60px;
    border-radius: 10px;
}

.download p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

/* Add padding to the footer container */
footer {
    padding: 20px; /* Add padding around the entire footer */
    background-color: #edf1d7; /* Optional: Set a background color for the footer */
    color: #000000; /* Optional: Set the text color */
}

/* Ensure the footer columns don't touch the edges */
.footer-links {
    display: flex;
    justify-content: space-between;
    padding: 0 20px; /* Add padding to the left and right of the footer links */
}

/* Style each footer column */
.footer-column {
    flex: 1;
    margin: 0 10px; /* Add some spacing between columns */
}

.footer-column h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}


/* About Page Styles */
.about-page section {
    margin-bottom: 80px;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.game-story {
    background-color: #f1faee;
    padding: 40px;
    border-radius: 10px;
}

.story-content {
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    flex: 0 0 80px;
    margin-right: 20px;
}

.feature-description {
    flex: 1;
}

.feature-description h3 {
    margin-bottom: 10px;
}

.team-image {
    margin-top: 40px;
    text-align: center;
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-form-container {
    flex: 3;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 2;
    background-color: #f1faee;
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #c1121f;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    flex: 0 0 40px;
    margin-right: 15px;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    padding: 5px 10px;
    background-color: #457b9d;
    color: #fff;
    border-radius: 5px;
    font-size: 0.9rem;
}

.social-link:hover {
    background-color: #1d3557;
    color: #fff;
}

.response-time {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 60px auto 0;
}

/* Policy Page Styles */
.policy-page {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #1d3557;
    margin-bottom: 10px;
}

.policy-header p {
    color: #777;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #1d3557;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-section h3 {
    color: #457b9d;
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.policy-section ul li::before {
    content: "•";
    color: #e63946;
    font-weight: bold;
    display: inline-block;
    width: 15px;
    position: absolute;
    left: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    header {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    .hero, 
    .about-content, 
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-cards, 
    .testimonial-cards, 
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-card, 
    .testimonial-card, 
    .footer-column {
        margin-bottom: 20px;
    }
    
    .screenshot-carousel {
        flex-wrap: wrap;
    }
    
    .screenshot {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero, 
    .download {
        padding: 30px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .policy-page {
        background-color: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 60px;
    }
    
    .policy-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .policy-header h1 {
        font-size: 2.5rem;
        color: #1d3557;
        margin-bottom: 10px;
    }
    
    .policy-header p {
        color: #777;
        font-style: italic;
    }
    
    .policy-content {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .policy-section {
        margin-bottom: 40px;
    }
    
    .policy-section h2 {
        color: #1d3557;
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .policy-section h3 {
        color: #457b9d;
        font-size: 1.4rem;
        margin: 25px 0 15px;
    }
    
    .policy-section p {
        margin-bottom: 15px;
        line-height: 1.7;
    }
    
    .policy-section ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .policy-section ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 15px;
    }
    
    .policy-section ul li::before {
        content: "•";
        color: #e63946;
        font-weight: bold;
        display: inline-block;
        width: 15px;
        position: absolute;
        left: 0;
    }
    
    @media (max-width: 768px) {
        .policy-page {
            padding: 20px;
        }
        
        .policy-header h1 {
            font-size: 2rem;
        }
        
        .policy-section h2 {
            font-size: 1.5rem;
        }
        
        .policy-section h3 {
            font-size: 1.3rem;
        }
    }
}