/* 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: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #0055A5;
    color: #fff;
}

.btn-primary:hover {
    background-color: #00458a;
}

.btn-green {
    background-color: #2ECC71;
    color: #fff;
}

.btn-green:hover {
    background-color: #25a25a;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--pure-white);
}

.btn-primary:hover {
    background-color: #00458a;
    transform: translateY(-2px);
}

.btn-green {
    background-color: var(--growth-green);
    color: var(--pure-white);
}

.btn-green:hover {
    background-color: #25a25a;
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--premium-gold);
    color: var(--pure-white);
}

.btn-gold:hover {
    background-color: #c6950c;
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--energy-orange);
    color: var(--pure-white);
}

.btn-orange:hover {
    background-color: #e05700;
    transform: translateY(-2px);
}

/* Header Styles */
header {
    background-color: #0055A5;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.desktop-nav a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #DAA520;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.language-switcher a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.language-switcher a:hover,
.language-switcher a.active {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Footer Styles */
footer {
    background-color: #0055A5;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: #DAA520;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #DAA520;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #DAA520;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 85, 165, 0.9), rgba(0, 85, 165, 0.85)), 
                url('https://images.unsplash.com/photo-1533750349088-cd871a92f312?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    color: white;
    padding: 50px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}