
/* General Reset and Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f1f1f1;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #4CAF50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background-color: #66bb6a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
}

.hero p {
    font-size: 24px;
    margin-top: 20px;
}

.cta-buttons {
    margin-top: 30px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s;
}

.primary {
    background-color: #ff9800;
    color: white;
}

.primary:hover {
    background-color: #e68900;
}

.secondary {
    background-color: #ffffff;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.secondary:hover {
    background-color: #f1f1f1;
}

/* Game Overview Section */
.game-overview {
    background-color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.game-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.game-images img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

.game-images img:nth-child(even) {
    margin-top: 20px;
}

/* Privacy Policy Section */
.privacy-policy {
    padding: 40px 0;
    text-align: left;
    background-color: #ffffff;
}

.privacy-policy h2 {
    font-size: 36px;
}

.privacy-policy h3 {
    font-size: 24px;
    margin-top: 20px;
}

.privacy-policy ul {
    margin-left: 20px;
    list-style-type: square;
    font-size: 18px;
}

/* Footer Styles */
footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 50px;
}