/* Reset and base styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #F2F2F2;
    --primary-color: #FF6A3D;
    --secondary-color: #2D4059;
    --heading-color: #1E1E2F;
    --text-color: #5A5A5A;
    --accent-light: #FFA41B;
    --white: #FFFFFF;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.3rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-light);
}

section {
    padding: 80px 15px;
    box-sizing: border-box;
    max-width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-light));
    border-radius: 2px;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    border: none;
    background: linear-gradient(to right, var(--primary-color), var(--accent-light));
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 106, 61, 0.2);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header styles */
.header {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Navigation */
.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    color: var(--heading-color);
    font-weight: 500;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-light));
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(to right, var(--primary-color), var(--accent-light));
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 106, 61, 0.3);
}

.cta-button::after {
    display: none;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
}

.menu-checkbox {
    display: none;
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon, .menu-icon::before, .menu-icon::after {
    display: block;
    background-color: var(--heading-color);
    height: 3px;
    width: 100%;
    border-radius: 3px;
    position: relative;
}

.menu-icon::before, .menu-icon::after {
    content: '';
    position: absolute;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.cookie-content p {
    margin: 0;
    padding-right: 20px;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: var(--border-radius);
    border: none;
    background: linear-gradient(to right, var(--primary-color), var(--accent-light));
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 106, 61, 0.2);
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading-color);
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: var(--white);
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 106, 61, 0.1);
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}

.checkbox-container label {
    margin-bottom: 0;
}

/* Footer styles */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer h3, .footer h4 {
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-info, .footer-contact, .footer-links {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-contact ul, .footer-links ul {
    list-style: none;
}

.footer-contact li, .footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Policy page styles */
.policy-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    margin: 40px 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-button {
        display: flex;
    }
    
    .menu-checkbox:checked ~ .menu-button .menu-icon {
        background: transparent;
    }
    
    .menu-checkbox:checked ~ .menu-button .menu-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-checkbox:checked ~ .menu-button .menu-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .menu-checkbox:checked ~ .main-nav {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        padding-right: 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}
