/* Base Styles */
:root {
    --color-background: #0F0F0F;
    --color-accent: #EFA94A;
    --color-accent-hover: #F38F4E;
    --color-secondary: #F5F5F5;
    --color-text: #FFFFFF;
    --container-padding: 5vw;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

section[id] {
    scroll-margin-top: 40px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(to right, var(--color-accent), var(--color-accent-hover));
    color: var(--color-background);
}

.btn-primary:hover {
    box-shadow: 0 4px 10px rgba(239, 169, 74, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--color-background);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-background);
    text-decoration: none;
    border-color: var(--color-accent);
}

.btn-text {
    padding: 0;
    background: none;
    border: none;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: bold;
}

.btn-text:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    background-color: var(--color-background);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo a {
    color: var(--color-text);
    text-decoration: none;
}

.main-nav {
    position: relative;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-text);
    border-radius: 3px;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0px;
}

.menu-icon span:nth-child(2) {
    top: 10px;
}

.menu-icon span:nth-child(3) {
    top: 20px;
}

.nav-list {
    display: flex;
    list-style-type: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.nav-list a:hover:not(.btn) {
    color: var(--color-accent);
}

.nav-list .btn-primary {
    color: var(--color-background);
}

.nav-list .btn-primary:hover {
    color: var(--color-background);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background-image: url('../img/g5AgDG.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: rgba(245, 245, 245, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: rgba(245, 245, 245, 0.03);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

/* Audit Types Section */
.audit-types-section {
    padding: 5rem 0;
}

.audit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.audit-card {
    background-color: rgba(245, 245, 245, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.audit-card:hover {
    transform: translateY(-5px);
}

.audit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.audit-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.audit-card p {
    padding: 0 1.5rem;
}

.audit-card ul {
    padding: 0 1.5rem 1.5rem;
    list-style-position: inside;
}

.audit-card li {
    margin-bottom: 0.5rem;
}

.audit-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: rgba(245, 245, 245, 0.05);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background-color: rgba(245, 245, 245, 0.03);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: var(--color-background);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(245, 245, 245, 0.03);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author p {
    margin-bottom: 0.25rem;
}

/* Blog Preview Section */
.blog-preview-section {
    padding: 5rem 0;
    background-color: rgba(245, 245, 245, 0.05);
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: rgba(245, 245, 245, 0.03);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-cta {
    text-align: center;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(245, 245, 245, 0.03);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select {
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(245, 245, 245, 0.2);
    background-color: rgba(245, 245, 245, 0.1);
    color: var(--color-text);
}

option {
    color: black;
    background-color: white;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Footer Styles */
.site-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-contact address {
    font-style: normal;
}

.footer-links ul, .footer-nav ul {
    list-style-type: none;
}

.footer-links li, .footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 245, 245, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1100;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--color-background);
        padding: 1.5rem;
        width: 200px;
        border-radius: var(--border-radius);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .menu-toggle:checked ~ .nav-list {
        display: flex;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 100%;
    }
}

/* Policy Pages Styles */
.policy-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 2rem;
    background-color: rgba(245, 245, 245, 0.03);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.policy-container h2 {
    font-size: 1.75rem;
    text-align: left;
    margin: 2rem 0 1rem;
}

.policy-container p {
    margin-bottom: 1rem;
}

.policy-container ul, .policy-container ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-container li {
    margin-bottom: 0.5rem;
}

/* Extra Pages Styles */
.page-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 2rem;
    background-color: rgba(245, 245, 245, 0.03);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-container h1 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Thank You Page */
.thank-you-container {
    text-align: center;
    max-width: 600px;
    margin: 8rem auto;
    padding: 3rem;
    background-color: rgba(245, 245, 245, 0.03);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thank-you-container h1 {
    margin-bottom: 1.5rem;
}

.thank-you-container p {
    margin-bottom: 2rem;
}
