/* --- General Styles --- */
:root {
    --bg-main: #ffffff;
    --bg-highlight: #f5f5ee;
    --color-orange: #f26522;
    --color-orange-dark: #d95415; /* For hover */
    --color-text: #333333;
    --color-white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Georgian', sans-serif;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--color-text);
    text-align: center;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.orange {
    color: var(--color-orange);
    font-weight: bold;
}

/* --- Spacers --- */
.spacer-10 { height: 10px; }
.spacer-20 { height: 20px; }
.spacer-30 { height: 30px; }
.spacer-50 { height: 50px; }
.spacer-100 { height: 100px; }

/* --- Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-left-aligned {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Footer --- */
.page-header, .page-footer {
    background-color: var(--bg-highlight);
    padding: 20px 0;
    width: 100%;
}
.page-footer {
    margin-top: auto; /* Pushes footer to bottom */
}
.logo-container {
    padding-top: 10px;
    margin-bottom: 10px;
}
.logo {
    width: 120px;
    height: 71px;
}
.main-nav a {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: regular;
    transition: color 0.3s ease;
}
.main-nav a:hover {
    color: var(--color-orange-dark);
}
.nav-separator {
    color: var(--color-text);
    margin: 0 10px;
    font-weight: bold;
}

/* --- Typography --- */
h1, h2, h3, h4, p {
    margin: 0 0 1em 0;
}
p:last-child {
    margin-bottom: 0;
}
.main-headline {
    font-size: 48px;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.2;
}
.sub-headline {
    font-size: 24px;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.4;
}
.section-title {
    font-size: 24px;
    font-weight: bold;
}
.info-block p {
    font-weight: bold;
    margin: 0.5em 0;
}
.countdown-timer {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    color: var(--color-text); /* This makes the colons black */
}

.countdown-number {
    color: var(--color-orange);
    font-size: 24px;
}

.countdown-label {
    color: var(--color-text);
}

/* --- Sections & Buttons --- */
.section-bg {
    background-color: var(--bg-highlight);
    padding: 50px 20px;
    width: 100%;
}
.cta-button {
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 36px;
    font-weight: bold;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: var(--color-orange-dark);
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}
.feature-box {
    background: var(--bg-highlight);
    padding: 30px 20px;
    border-radius: 5px;
}
.feature-icon {
    width: 80px;
    height: 80px;
}
.feature-box p { margin: 0; }

/* --- How it Works Section --- */
.how-it-works-flex {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
}
.how-it-works-step {
    flex: 1;
    max-width: 300px;
}
.step-circle {
    width: 80px;
    height: 80px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px auto;
}
.how-it-works-step p {
    margin: 0;
}

/* --- Left-aligned Pages (Services, Guidelines) --- */
.text-left { text-align: left; }
.text-left .page-header, .text-left .page-footer { text-align: center; }

.page-title-left {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}
.bullet {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    vertical-align: middle;
}
.service-title {
    font-size: 20px;
}
.service-item p, .guidelines-content p, .guidelines-content h3 {
    line-height: 1.6;
}
.guidelines-content h3 {
    margin-top: 2em;
    font-size: 18px;
}

/* --- Thank You Page --- */
.thank-you-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-orange);
}

/* --- Cookie Consent Banner --- */
.cookie-consent {
    position: fixed;
    bottom: -200px; /* Start hidden */
    left: 0;
    width: 100%;
    background: rgba(242, 101, 34, 0.5);
    color: var(--color-text);
    padding: 20px;
    text-align: center;
    transition: bottom 0.5s ease-in-out;
    z-index: 1000;
}
.cookie-consent.show {
    bottom: 0;
}
.cookie-consent p {
    margin: 0 0 15px 0;
    color: var(--color-white);
}
.cookie-btn {
    background-color: var(--color-orange);
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 10px 25px;
    border-radius: 1px;
    cursor: pointer;
}
.cookie-btn:hover {
    background-color: var(--color-orange-dark);
}


/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .main-headline { font-size: 32px; max-width: 95%; }
    .sub-headline { font-size: 20px; max-width: 95%; }
    .cta-button { font-size: 24px; }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .how-it-works-flex {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .container-left-aligned {
        max-width: 90%;
    }
}