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

:root {
    --primary-color: #1c1b1b;
    --primary-gradient: linear-gradient(to right, rgba(230, 102, 10, 0.95), rgba(230, 102, 10, 0.95));
    --secondary-color: #801388;
    --text-dark: #1c1b1b;
    --text-light: #ffffff;
    --background-light: #1c1b1b;
    --background-dark: #1c1b1b;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:active {
    transform: scale(0.98);
}

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

.btn-primary:hover {
    box-shadow: 0 6px 15px rgba(106, 17, 203, 0.5);
    transform: translateY(-3px);
}

.btn-download {
    background: linear-gradient(to right, #b80fc3, #b80fc3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-left: 20px;
    padding-right: 32px;
    width: 250px;
    margin: 0 auto;
}

.btn-download svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn-download:hover {
    background: linear-gradient(to right, #b80fc3, #b80fc3);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    transform: translateY(-3px);
}

.btn-download:hover svg {
    transform: translateY(3px);
}

/* Pulsing effect for CTA buttons */
.cta .btn-download {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 152, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.3), 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-download {
        padding-left: 16px;
        padding-right: 24px;
    }
}

header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--background-light);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    color: rgba(230, 102, 10, 0.95);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-dark);
}

.hero {
    position: relative;
    height: 1000px;
    overflow: hidden;
    background-image: url('images/basket.webp');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(97, 38, 1, 0.9), rgba(97, 38, 1, 0.9));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    padding: 40px 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphics .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.hero-graphics .circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.hero-graphics .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
}

.hero-graphics .circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
}

.features {
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.features h2 {
    margin-bottom: 30px;
    color: white;
}

.features > p {
    max-width: 800px;
    margin: 0 auto 50px;
    color: white;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: rgba(230, 102, 10, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    color: white;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    z-index: -1;
}

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

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.icon img {
    width: 50%;
    height: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .icon img {
        width: 30%;
    }
}

.testimonials {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: white;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 15px;
}

.testimonials > p {
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    position: relative;
}

.stars {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.user {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background: var(--primary-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-info h4 {
    margin-bottom: 5px;
}

.user-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgb(244, 158, 69), rgba(230, 102, 10, 0.95)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="100%" height="100%" fill="none"/><path d="M40,40 L160,40 L160,160 L40,160 Z" stroke="white" stroke-width="2" fill="none" stroke-dasharray="5,5"/><circle cx="100" cy="100" r="50" stroke="white" stroke-width="2" fill="none"/></svg>');
    color: white;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
}

footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--background-dark);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgb(255, 255, 255);
}

.footer-links a:hover {
    color: rgba(230, 102, 10, 0.95);
}

.footer-legal {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
    border-top: 1px solid rgb(255, 255, 255);
    padding-top: 20px;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    margin: 0 10px;
    color: rgb(255, 255, 255);
}

.legal-links a:hover {
    color: white;
}


.contact-form {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-form .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-right: 15px;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    min-height: 150px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav li {
        margin: 15px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-form .container {
        grid-template-columns: 1fr;
    }
}

.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-graphics .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.hero-graphics .circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: float 8s infinite ease-in-out;
}

.hero-graphics .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
    animation: float 6s infinite ease-in-out;
}

.hero-graphics .circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.contact-banner {
    background: var(--primary-gradient);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-banner h1 {
    margin-bottom: 20px;
}

.contact-banner p {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Options */
.contact-options {
    padding: 80px 0;
    text-align: center;
}

.contact-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-banner {
    background: var(--primary-gradient);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.mission-banner h1 {
    margin-bottom: 20px;
}

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

.btn, .feature-card, .testimonial-card {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
}

input.error, textarea.error {
    border-color: var(--error-color);
}

.icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.mission {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.mission h1 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.mission h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-gradient);
}

.mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.commitment {
    padding: 80px 0;
}

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

.commitment h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.commitment h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
}

.commitment-paragraphs p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
}

.checkbox label {
    margin: 0;
}

.content-separator {
    height: 1px;
    background: var(--border-color);
    margin: 40px 0;
}

.pattern-bg {
    background-color: #f9f9f9;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.btn-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Strategy Section Styles */
.strategy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.strategy-section h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.strategy-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
}

.strategy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strategy-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid rgba(230, 102, 10, 0.95);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.strategy-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.strategy-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.strategy-card ul {
    list-style: none;
    padding: 0;
}

.strategy-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.5;
}

.strategy-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(230, 102, 10, 0.95);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Enhanced Form Styling */
.contact-form-container {
    padding: 80px 0;
    background: white;
}

.contact-form-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: rgba(230, 102, 10, 0.95);
    box-shadow: 0 0 0 3px rgba(230, 102, 10, 0.1);
}

.form-submit {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 102, 10, 0.3);
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .strategy-section {
        padding: 60px 0;
    }
    
    .strategy-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strategy-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
}

/* Enhanced Button Animations */
.btn-download {
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-download:hover::before {
    left: 100%;
}

/* Improved Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Enhanced Accessibility */
button:focus, 
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid rgba(230, 102, 10, 0.8);
    outline-offset: 2px;
}

/* Loading Animation for Better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strategy-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.strategy-card:nth-child(1) { animation-delay: 0.1s; }
.strategy-card:nth-child(2) { animation-delay: 0.2s; }
.strategy-card:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Header Styles */
header.scrolled {
    background: rgba(28, 27, 27, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Additional Mobile Improvements */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-download {
        width: 200px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .strategy-section {
        padding: 40px 0;
    }
    
    .strategy-card {
        padding: 15px;
    }
    
    .strategy-card h3 {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .hero, .cta, .contact-form-container {
        display: none;
    }
    
    .strategy-section, .features, .fcf-about-container {
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .strategy-card {
        border: 2px solid #000;
    }
    
    .btn-download {
        border: 2px solid #000;
    }
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.articles-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1c1b1b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-preview {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

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

.article-preview:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    margin-bottom: 15px;
}

.article-content h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
}

.article-content h3 a:hover {
    color: #ff6b35;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #999;
}

.read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e55a2b;
}

/* Article Page Styles */
.article-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.article-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 2.2rem;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.article-hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.article-body {
    line-height: 1.8;
    color: #444;
}

.article-body h2 {
    color: #333;
    margin: 40px 0 20px 0;
    font-size: 1.5rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.article-body h3 {
    color: #444;
    margin: 30px 0 15px 0;
    font-size: 1.2rem;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.related-articles h3,
.article-cta h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.related-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #666;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.related-link:hover {
    background: #ff6b35;
    color: white;
}

.related-link img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.article-cta {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.article-cta p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Responsive Articles */
@media (max-width: 1024px) {
    .article-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .articles-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-preview {
        margin: 0 10px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-main {
        padding: 20px 10px;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    min-height: 100vh;
    padding: 120px 0 60px 0;
    background: #f8f9fa;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 20px;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 30px;
    border-left: 4px solid #ff6b35;
    padding-left: 15px;
}

.legal-content h3 {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.legal-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ol li {
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.legal-content a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.legal-footer {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 4px solid #ff6b35;
}

.legal-footer p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px 0;
    }
    
    .legal-content {
        margin: 0 20px;
        padding: 30px 25px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        margin: 0 10px;
        padding: 25px 20px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-content ul,
    .legal-content ol {
        padding-left: 20px;
    }
}

/* Footer 18+ Icon Styles */
.footer-row {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background-color: transparent;
    width: 100%;
}

.footer__help {
    justify-content: center;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__help li {
    display: flex;
    align-items: center;
}

.footer__help img,
.footer__help svg {
    max-height: 30px; /* Reduced from 50px to 30px */
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer__help a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px; /* Reduced from 50px to 30px */
}

.footer__help a:hover img,
.footer__help a:hover svg {
    filter: brightness(0) invert(0.8);
}

/* Responsive adjustments for footer icon */
@media (max-width: 1024px) {
    .footer-row {
        padding: 15px 10px;
    }
    
    .footer__help {
        gap: 15px;
    }
    
    .footer__help img,
    .footer__help svg {
        max-height: 28px;
    }
    
    .footer__help a {
        height: 28px;
    }
}

@media (max-width: 768px) {
    .footer-row {
        padding: 10px 5px;
    }
    
    .footer__help {
        gap: 10px;
        justify-content: space-around;
    }
    
    .footer__help img,
    .footer__help svg {
        max-height: 25px;
    }
    
    .footer__help a {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .footer-row {
        padding: 8px 3px;
    }
    
    .footer__help {
        gap: 8px;
    }
    
    .footer__help img,
    .footer__help svg {
        max-height: 22px;
    }
    
    .footer__help a {
        height: 22px;
    }
    
    .footer__help li {
        width: auto;
        justify-content: center;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .strategy-card {
        animation: none;
    }
    
    .btn-download::before {
        transition: none;
    }
    
    .article-preview {
        transition: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.btn-with-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-cards, .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contact-form .container {
        padding: 0 10px;
    }

    form {
        padding: 20px;
    }
}

@media print {
    .hero, .cta, .testimonials, footer, .age-verification, .mobile-menu-toggle {
        display: none;
    }

    body, header, main {
        background: white;
        color: black;
    }

    .container {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .logo a {
        color: black;
        -webkit-text-fill-color: black;
    }

    input, textarea {
        border: 1px solid #ccc;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

button:focus, a:focus {
    outline: 2px dashed var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-color-scheme: dark) {
    body.auto-dark-mode {
        --text-dark: #e0e0e0;
        --text-light: #a0a0a0;
        --background-light: #121212;
        --background-dark: #000000;
        --border-color: #333333;
    }

    body.auto-dark-mode .feature-card,
    body.auto-dark-mode form,
    body.auto-dark-mode .contact-card {
        background-color: #1e1e1e;
    }

    body.auto-dark-mode input,
    body.auto-dark-mode textarea {
        background-color: #2d2d2d;
        color: var(--text-dark);
        border-color: #444;
    }
}

.scoring-intro {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, rgba(106, 17, 203, 0.05) 0%, rgba(37, 117, 252, 0.05) 100%);
}

.scoring-intro h1 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.scoring-intro h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-gradient);
}

.scoring-intro p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.scoring-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding: 20px 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.scoring-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.scoring-list li:last-child {
    margin-bottom: 0;
}

.scoring-list li::before {
    content: "⚽";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.scoring-details {
    padding: 80px 0;
    background-color: white;
}

.scoring-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.scoring-breakdown h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.scoring-breakdown h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
}

.scoring-description p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.scoring-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.scoring-category {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scoring-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-gradient);
}

.scoring-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.scoring-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.scoring-category p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .scoring-overview {
        grid-template-columns: 1fr;
    }

    .scoring-category {
        padding: 25px;
    }

    .scoring-intro {
        padding: 60px 0;
    }

    .scoring-details {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .scoring-list {
        padding: 15px 20px;
        width: 100%;
    }

    .scoring-categories {
        gap: 20px;
    }

    .scoring-category::before {
        width: 3px;
    }
}

.fcf-about-container {
    max-width: 1200px;
    margin: 70px auto;
    padding: 20px;
    background: rgba(230, 102, 10, 0.95);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.fcf-about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.fcf-about img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.fcf-about-text {
    flex: 1;
    padding: 20px;
    text-align: center;
}
.fcf-about-text h2 {
    color: #ffffff;
    font-size: 28px;
}
.fcf-about-text p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}
.fcf-features {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.fcf-feature {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: #007bff;
    color: white;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
}
@media (max-width: 768px) {
    .fcf-about {
        flex-direction: column;
        text-align: center;
    }
    .fcf-about-text {
        padding: 10px;
    }
}


.contact-form-container {
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    margin-bottom: 80px;
    margin-top:  80px;
    background: linear-gradient(135deg, rgba(230, 102, 10, 0.95), rgba(230, 102, 10, 0.95));
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(230, 102, 10, 0.4);
    text-align: center;
}

.contact-form-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(135deg, rgba(103, 46, 3, 0.95), rgba(120, 52, 5, 0.95));
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;

}

.form-label {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease-in-out;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    background: #ffffff;
}

.form-submit {
    background: linear-gradient(to right, var(--secondary-color), #b80fc3);
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;

}

.form-submit:hover {
    background: linear-gradient(to right, #b80fc3, var(--secondary-color));
    color: #ffffff;
}

/* Сообщение об успехе */
.success-message {
    display: none;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    margin-top: 20px;
}

/* Адаптивность для телефонов */
@media (max-width: 768px) {
    .contact-form-container {
        max-width: 90%;
        padding: 25px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 10px;
    }

    .form-submit {
        font-size: 16px;
        padding: 10px;
    }

    .contact-form-title {
        font-size: 24px;
    }
}


.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Убедимся, что контейнер будет поверх всех элементов */
}

/* Затемнение фона */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Затемнение фона */
}

/* Модальное окно */
.popup {
    position: relative;
    background: rgba(182, 82, 5, 0.95);
    border-radius: 10px;
    padding: 30px;
    width: 400px;
    text-align: center;
    z-index: 1000; /* Модальное окно выше затемненного фона */
}

.popup h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.popup p {
    font-size: 18px;
    margin-bottom: 25px;
    color:white;
}

/* Стили для кнопок */
.popup button {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
}

.yes-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    margin-bottom: 10px;
}

.no-btn {
    background-color: #f44336;
    color: white;
    border: none;
}

/* Скрываем форму после ответа */
.modal-container input {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    border-radius: 10px;
    max-width: 450px;
    font-size: 14px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner button {
    background-color: #E6660AF2;
    color: white;
    border: none;
    padding: 8px 25px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-banner a {
    color: #E6660AF2;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Чекбокс скрыт, только при его активации скрывается баннер */
#cookieConsent {
    display: none;
}

/* Скрыть баннер, если чекбокс установлен */
#cookieConsent:checked + .cookie-banner {
    display: none;
}

