
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Nunito:wght@300;400;600&display=swap');

:root {
    --primary: #0E1C36;
    --secondary: #A31621;
    --accent: #F7B32B;
    --light: #F5F5F5;
    --dark: #333333;
    --shadow: rgba(14, 28, 54, 0.1);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/grunge-texture.jpg');
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition);
}

.btn:hover::after {
    transform: translateX(0);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background: var(--primary);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 28, 54, 0.03);
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}


.grunge-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: white;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.grunge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/grunge-texture.jpg');
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.grunge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.grunge-card-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.distressed-border {
    border: 1px solid var(--primary);
    position: relative;
}

.distressed-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/grunge-texture.jpg');
    opacity: 0.1;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.grain-overlay {
    position: relative;
}

.grain-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}


.header {
    padding: 1rem 0;
    background: white;
    position: relative;
    box-shadow: 0 2px 10px var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    z-index: 100;
    width: 200px;
}

.logo {
    max-width: 220px;
    height: auto;
}


.nav-orb-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.nav-orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(14, 28, 54, 0.3);
    position: relative;
    transition: var(--transition);
    z-index: 3;
}

.nav-orb:hover {
    transform: scale(1.05);
    background-color: var(--secondary);
}

.nav-orb-icon {
    color: white;
    font-size: 1.5rem;
}

.nav-menu {
    position: absolute;
    bottom: 40px;
    right: 10px;
    background: white;
    border-radius: 15px;
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
    z-index: 2;
}

.nav-menu.active {
    transform: scale(1);
    opacity: 1;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu li {
    margin: 0.5rem 0;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--dark);
    transition: var(--transition);
    font-weight: 500;
}

.nav-menu a:hover {
    background-color: rgba(14, 28, 54, 0.05);
    color: var(--secondary);
    padding-left: 1.8rem;
}


.hero {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14, 28, 54, 0.95), rgba(14, 28, 54, 0.8)), url('../images/hero-payment.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.payment-icon i {
    font-size: 1.8rem;
    color: white;
}


.how-it-works {
    position: relative;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(247, 179, 43, 0.4);
}

.step-card h3 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}


.advantages {
    background: linear-gradient(135deg, rgba(14, 28, 54, 0.02), rgba(14, 28, 54, 0.05));
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}


.payment-methods {
    position: relative;
}

.methods-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.method-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.method-image {
    height: 180px;
    position: relative;
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-content {
    padding: 1.5rem;
}

.method-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}


.security {
    background: linear-gradient(135deg, rgba(163, 22, 33, 0.05), rgba(163, 22, 33, 0.1));
}

.security-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.security-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
}

.security-image img {
    width: 100%;
    display: block;
}

.security-content h2 {
    margin-bottom: 1.5rem;
}

.security-list {
    list-style: none;
    margin: 1.5rem 0;
}

.security-list li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
}

.security-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 3px;
}


.services {
    position: relative;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.service-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-btn {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
}

.service-btn:hover {
    color: var(--accent);
    padding-left: 5px;
}


.contact-form-section {
    background: linear-gradient(135deg, rgba(14, 28, 54, 0.02), rgba(14, 28, 54, 0.05));
    padding: 5rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/grunge-texture.jpg');
    opacity: 0.03;
    border-radius: 8px;
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 28, 54, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--secondary);
}


.faq {
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    background: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
}

.faq-item.active .faq-question::after {
    content: '\f106';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.2rem;
    max-height: 1000px; 
    border-top: 1px solid #ddd;
}

.faq-articles {
    margin-top: 3rem;
}

.article-preview {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.article-image {
    height: 200px;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-link {
    margin-top: auto;
    align-self: flex-start;
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.article-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.article-link:hover i {
    transform: translateX(3px);
}


.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/grunge-texture.jpg');
    opacity: 0.05;
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    max-width: 180px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


.article-page {
    padding: 5rem 0;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
}

.article-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/grunge-texture.jpg');
    opacity: 0.03;
    border-radius: 8px;
    pointer-events: none;
}

.article-header {
    margin-bottom: 2rem;
}

.article-header h1 {
    margin-bottom: 1rem;
}

.article-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: block;
}

.article-featured-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    display: block;
}

.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}


.mission-page {
    padding: 5rem 0;
}

.mission-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mission-image {
    max-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px var(--shadow);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-values {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}


.services-page {
    padding: 5rem 0;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.service-item-image {
    flex: 1;
    min-width: 300px;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-item-content {
    flex: 2;
    min-width: 300px;
    padding: 2.5rem;
}

.service-item-title {
    margin-bottom: 1.5rem;
}

.service-highlights {
    margin: 1.5rem 0;
}

.service-highlight {
    display: flex;
    margin-bottom: 1rem;
}

.service-highlight i {
    color: var(--secondary);
    margin-right: 1rem;
    margin-top: 3px;
}


.contacts-page {
    padding: 5rem 0;
}

.contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/grunge-texture.jpg');
    opacity: 0.03;
    border-radius: 8px;
    pointer-events: none;
}

.contact-map {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}


.thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 2rem;
}

.thank-you i {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
}

.back-home {
    margin-top: 2rem;
}


.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text {
    flex: 2;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
    transition: var(--transition);
}

.cookie-settings-close:hover {
    color: var(--primary);
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category-title {
    font-weight: 600;
    margin: 0;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--accent);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}


.policy-page {
    padding: 5rem 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.policy-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.policy-date {
    color: #777;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section-title {
    margin-bottom: 1rem;
    color: var(--primary);
}

.policy-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.8rem;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.modal-close {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--secondary);
}


.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 10;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    margin-right: 10px;
    margin-top: 5px;
}


@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .security-container,
    .contacts-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-item-image {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-orb {
        width: 50px;
        height: 50px;
    }
    
    .form-container,
    .article-container,
    .policy-container,
    .contact-info-card {
        padding: 1.5rem;
    }
}