body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: url('Georgia-America-flag.jpeg') center/cover no-repeat;
    color: #fff;
}

.header {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    list-style: none;
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #f0a500;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 90vh;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.btn {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background 0.3s, transform 0.3s;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.btn:hover {
    background: #d48800;
}

.flags-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.flags {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.flags img {
    width: 200px;
    height: auto;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.flags img:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.about-section {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 40px auto;
    max-width: 800px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.card {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card i {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #f0a500;
}

.footer {
    padding: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
}

.disclaimer {
    font-size: 1em;
    color: #ccc;
}
