  
 :root {
            --primary: #ff9800;
            --secondary: #e70000;
            --accent: #ff9800;
            --accent2: #ff9800;
            --accent3: #ffffff;
            --dark-bg: #1b1b1d;
            --dark-red: #320101;
            --dark: #1b1b1d;
            --light: #ffffff;
            --gray: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 0.9;
            color: var(--light);
            background-color: var(--dark-bg);
            overflow-x: hidden;
        }

        h3, h4, h5, h6 {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: var(--primary);
			font-size: 2.2rem;
			line-height: 0.9; 
        }


@media (max-width: 768px) {
    h3, h4, h5, h6 {
        font-size: 1.5rem; 
		line-height: 1.1;
    }
}


        h1 {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: var(--primary);
			font-size: 4.9rem;
			line-height: 0.97;
        }
        
@media (max-width: 768px) {
    h1 {
        font-size: 2.9rem; 
		line-height: 0.9;
    }
}		
		
		
		
		h2 {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: var(--primary);
			font-size: 4.2rem;
			line-height: 1.0;
        }

@media (max-width: 768px) {
    h2 {
        font-size: 2.9rem; 
		line-height: 0.9;
    }
}




        .parallax-wrapper {
            position: relative;
            overflow-x: hidden;
        }

 
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(27, 27, 29, 0.95);
            z-index: 1000;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--dark-red);
        }

        .navbar.scrolled {
            padding: 15px 5%;
            background-color: rgba(50, 1, 1, 0.98);
        }


 
.logo img {
  max-width: 100%;  
  height: auto;
  display: block;
}

 
@media (min-width: 768px) {
  .logo img {
    max-width: 17%;
  }
}

 
@media (min-width: 1200px) {
  .logo img {
    max-width: 20%;
  }
}

        .logo span {
            color: var(--light);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

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

        .nav-links a {
text-decoration: none;
    color: var(--light);
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
    font-size: 0.7rem;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
	line-height: 0.2;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            left: 0;
            bottom: -5px;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--light);
        }


        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-bg) 100%);
            color: var(--light);
            text-align: center;
            padding: 0 20px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
             
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            animation: fadeUp 1s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            line-height: 1.1;
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background-color: var(--primary);
            color: #1b1b1d;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0px;
			margin-top: 30px;
			text-align: center;
			line-height: 1.1;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 152, 0, 0.6);
            background-color: var(--secondary);
            color: var(--light);
        }

        .cta-button-1 {
  display: flex;
  justify-content: center;
  align-items: center;
            padding: 18px 45px;
            background-color: var(--secondary);
            color: var(--light);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0px;
			text-align: center;
        }

        .cta-button-1:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 152, 0, 0.6);
            background-color: var(--primary);
            color: var(--light);
        }


  
        section {
            padding: 100px 5%;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
			margin-top: 80px;
        }

        .section-title h2 {
            font-size: 3.9rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
        }

 

        .section-title p {
    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
    margin-top: 40px;
        }


        .article-section {
            background-color: var(--dark);
        }

        .article-container {
            max-width: 100%;
        }

         
        .article-intro {
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            padding: 80px 60px;
            color: var(--light);
            margin-bottom: 60px;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .article-intro h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-align: center;
            color: var(--primary);
        }
		
 
.article-intro h2 {
    font-size: 4.2rem;  
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary);
    line-height: 1.0;
}

 
@media (max-width: 768px) {
    .article-intro h2 {
        font-size: 2.2rem;  
    }
}

 
@media (min-width: 1200px) {
    .article-intro h2 {
        font-size: 4.2rem;  
    }
}
 
        .article-intro h3 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            color: var(--primary);
			line-height: 0.9;
        }

@media (max-width: 768px) {
    .article-intro h3 {
        font-size: 1.5rem; 
		line-height: 1.1;
    }
}
		

        .article-intro .meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
            font-size: 0.9rem;
            opacity: 0.8;
            color: var(--gray);
        }

        .article-intro .meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .article-intro p {
    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
	text-align: center;
        }

         
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
            margin-bottom: 60px;
        }

        .main-content {
            font-size: 1.1rem;
            line-height: 1.9;
            font-weight: 300;
        }

        .main-content h2 {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: var(--primary);
			font-size: 4.2rem;
			line-height: 1.0;
        }
		
@media (max-width: 768px) {
    .main-content h2 {
        font-size: 2.5rem; 
		line-height: 1;
    }
}		
		
 

        .main-content h3 {
font-family: 'Archivo Black', sans-serif;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--primary);
    font-size: 2.2rem;
    line-height: 0.9;
        }
		
		
@media (max-width: 768px) {
    .main-content h3 {
        font-size: 1.5rem; 
		line-height: 1.1;
    }
}	
		

        .main-content p {
    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 30px;
    margin-top: 30px;
        }

        .main-content strong {
            color: var(--primary);
            font-weight: 600;
        }

        .main-content blockquote {
            border-left: 5px solid var(--accent);
            padding: 25px 35px;
            margin: 40px 0;
            background-color: rgba(50, 1, 1, 0.3);
            font-style: italic;
            font-size: 1.3rem;
            border-radius: 0 10px 10px 0;
            color: var(--light);
            font-weight: 300;
        }

        .main-content blockquote::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary);
            line-height: 1;
            margin-right: 10px;
            font-family: 'Archivo Black', sans-serif;
            opacity: 0.5;
        }

         
        .styled-list {
            margin: 30px 0;
            padding-left: 0;
            list-style: none;
			    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
        }

        .styled-list li {
            padding: 15px 0 15px 45px;
            margin-bottom: 12px;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
        }

        .styled-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 15px;
            width: 25px;
            height: 25px;
            background-color: var(--accent2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-bg);
            font-size: 0.9rem;
            font-weight: bold;
        }

        .styled-list li:nth-child(1)::before { content: '1'; }
        .styled-list li:nth-child(2)::before { content: '2'; }
        .styled-list li:nth-child(3)::before { content: '3'; }
        .styled-list li:nth-child(4)::before { content: '4'; }
        .styled-list li:nth-child(5)::before { content: '5'; }

         
        .icon-list-article {
            list-style: none;
            margin: 30px 0;
			    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
        }

        .icon-list-article li {
            padding: 18px 0 18px 60px;
            margin-bottom: 18px;
            position: relative;
            background-color: rgba(50, 1, 1, 0.3);
            border-radius: 8px;
            transition: all 0.3s ease;
            color: var(--light);
        }

        .icon-list-article li:hover {
            background-color: rgba(255, 152, 0, 0.1);
            transform: translateX(10px);
        }

        .icon-list-article li i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--primary);
            background-color: var(--dark-bg);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
        }

         
        .article-sidebar {
            padding-top: 20px;
        }

.sidebar-widget {
    background-color: rgba(50, 1, 1, 0.3);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 152, 0, 0.1);
    width: 100%;
    box-sizing: border-box;  
}

 
@media (max-width: 992px) {
    .sidebar-widget {
        padding: 25px;
        margin-bottom: 25px;
    }
}

 
@media (max-width: 768px) {
    .sidebar-widget {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: 8px;
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% - 20px);  
    }
}		
		
	.sidebar-widget p {
color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 30px;
    margin-top: 30px; 
}	

        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }

        .sidebar-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .sidebar-tags a {
            display: inline-block;
            padding: 10px 18px;
            background-color: var(--dark-bg);
            color: var(--light);
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 152, 0, 0.3);
            font-weight: 500;
        }

        .sidebar-tags a:hover {
            background-color: var(--primary);
            color: var(--dark-bg);
            transform: translateY(-3px);
            border-color: var(--primary);
        }

        .related-articles {
            list-style: none;
        }

        .related-articles li {
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .related-articles li:last-child {
            border-bottom: none;
        }

        .related-articles a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            font-weight: 300;
            line-height: 1.5;
        }

        .related-articles a:hover {
            color: var(--primary);
        }

         
        .article-highlight {
            background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-bg) 100%);
            border-radius: 10px;
            padding: 70px 60px;
            margin-bottom: 60px;
            color: var(--light);
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .article-highlight h2 {
            font-size: 2.8rem;
            margin-bottom: 40px;
            text-align: center;
            color: var(--primary);
        }
		
		
		.article-highlight p {
            text-align: center;			
     color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 30px;
    margin-top: 30px;
        }

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

        .highlight-item {
            background-color: rgba(27, 27, 29, 0.8);
            border-radius: 10px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 152, 0, 0.1);
        }
		
		
		        .highlight-item img {
             width:100%;
        }
		

        .highlight-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary);
        }

        .highlight-item i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 25px;
            display: block;
        }

        .highlight-item h4 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .highlight-item p {
            color: var(--gray);
            font-weight: 300;
            line-height: 1.6;
        }

         
        .article-comparison {
            background-color: var(--dark);
            border-radius: 10px;
            padding: 70px 60px;
            margin-bottom: 60px;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .article-comparison h2 {
            font-size: 2.8rem;
            margin-bottom: 50px;
            text-align: center;
            color: var(--primary);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .comparison-table th {
            background-color: var(--dark-red);
            color: var(--light);
            padding: 25px 20px;
            text-align: left;
            font-weight: 600;
            border-bottom: 3px solid var(--primary);
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.1rem;
        }

        .comparison-table td {
            padding: 22px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
            font-weight: 300;
        }

        .comparison-table tr:nth-child(even) {
            background-color: rgba(50, 1, 1, 0.2);
        }

        .comparison-table tr:hover {
            background-color: rgba(255, 152, 0, 0.1);
        }

        .comparison-table .check {
            color: var(--accent3);
            font-weight: bold;
            font-size: 1.3rem;
        }

        .comparison-table .cross {
            color: #ff5252;
            font-weight: bold;
            font-size: 1.3rem;
        }

         
        .article-conclusion {
            background: linear-gradient(rgba(50, 1, 1, 0.9), rgba(27, 27, 29, 0.9)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            padding: 90px 60px;
            color: var(--light);
            margin-bottom: 60px;
            text-align: center;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255, 152, 0, 0.3);
        }

        .article-conclusion h2 {
            font-size: 3.2rem;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .article-conclusion p {
            font-size: 1.3rem;
            line-height: 1.9;
            max-width: 800px;
            margin: 0 auto 50px;
            opacity: 0.9;
            font-weight: 300;
        }

         
        .article-author {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 40px;
            background-color: rgba(50, 1, 1, 0.3);
            border-radius: 10px;
            padding: 50px;
            margin-bottom: 60px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .author-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--dark-bg);
            box-shadow: var(--shadow);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h3 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
		
@media (max-width: 768px) {
    .author-info h3 {
        font-size: 2rem; 
		line-height: 0.9;
    }
}		
		
		
		
		
		.author-info p {
    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
        }
		
	.author-info li {
            padding: 18px 0 18px 60px;
            margin-bottom: 18px;
            position: relative;
            background-color: rgba(50, 1, 1, 0.3);
            border-radius: 8px;
            transition: all 0.3s ease;
            color: var(--light);
			list-style: none;
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
        }

        .author-info li:hover {
            background-color: rgba(255, 152, 0, 0.1);
            transform: translateX(10px);
        }

        .author-info li i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--primary);
            background-color: var(--dark-bg);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
        }
		

        .author-title {
            color: var(--accent2);
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--light);
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .author-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .author-social a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--dark-bg);
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 152, 0, 0.3);
        }

        .author-social a:hover {
            background-color: var(--primary);
            color: var(--dark-bg);
            transform: translateY(-5px);
            border-color: var(--primary);
        }

         
        .image-left-block {
            background-color: var(--dark);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            margin-bottom: 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .image-left-block .image-container {
            position: relative;
            overflow: hidden;
        }

        .image-left-block .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .image-left-block:hover .image-container img {
            transform: scale(1.05);
        }

        .image-left-block .content {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .image-left-block h3 {
font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.0;
        }

        .image-left-block p {
            color: var(--light);
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .image-left-block .icon-list {
            list-style: none;
            margin: 30px 0;
        }

        .image-left-block .icon-list li {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: var(--light);
            font-weight: 300;
        }

        .image-left-block .icon-list i {
            color: var(--accent2);
            margin-right: 18px;
            font-size: 1.4rem;
            min-width: 24px;
        }

         
        .text-left-block {
            background-color: rgba(50, 1, 1, 0.3);
            border-radius: 10px;
            padding: 60px;
            margin-bottom: 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .text-left-block .text-content {
            padding-right: 20px;
        }

        .text-left-block h3 {
font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.0;
        }

        .text-left-block h3::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background-color: var(--accent);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        .text-left-block p {
    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;	
        }

        .text-left-block .highlight-box {
            background-color: var(--dark-bg);
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--accent2);
        }

        .text-left-block .highlight-box p {
            margin-bottom: 0;
            color: var(--light);
            font-weight: 400;
        }

        .text-left-block .image-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
			background-color: #1b1b1d;
        }

        .text-left-block .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
        }

         
        .alternating-cards {
            margin-bottom: 80px;
        }

        .alternating-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-bottom: 70px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            background-color: var(--dark);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .alternating-card:nth-child(even) .card-image {
            order: 2;
        }

        .alternating-card:nth-child(even) .card-content {
            order: 1;
        }

        .alternating-card .card-image {
            position: relative;
            overflow: hidden;
            min-height: 400px;
        }

        .alternating-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

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

        .alternating-card .card-content {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .alternating-card .card-content h4 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--primary);
        }

        .alternating-card .card-content p {
    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
        }

        .alternating-card .card-content .tag {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark-bg);
            padding: 8px 20px;
            border-radius: 5px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .alternating-card .card-content ul {
            list-style: none;
			    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
           
        }

        .alternating-card .card-content ul li {
            padding: 10px 0;
            color: var(--light);
            font-weight: 300;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            padding-left: 25px;
        }

        .alternating-card .card-content ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.5rem;
            line-height: 1;
        }

         
        .icon-grid-block {
            background-color: var(--dark);
            border-radius: 10px;
            padding: 70px 60px;
            margin-bottom: 80px;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .icon-grid-block h3 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.0;
	    text-align: center;
        }


@media (max-width: 768px) {
    .icon-grid-block h3 {
        font-size: 1.5rem; 
		line-height: 1.1;
    }
}



        .icon-grid-block > p {
            text-align: center;
    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
        }

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

        .icon-grid-item {
            text-align: center;
            padding: 40px 30px;
            border-radius: 10px;
            transition: all 0.4s ease;
            background-color: rgba(50, 1, 1, 0.3);
            border: 1px solid rgba(255, 152, 0, 0.1);
        }
		
		.icon-grid-item img  {
		width:100%;
		}

        .icon-grid-item:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 152, 0, 0.1);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary);
        }

        .icon-grid-item i {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 30px;
            display: block;
        }

        .icon-grid-item h4 {
            font-size: 1.8rem;
            margin-bottom: 0px;
            color: var(--light);
			line-height: 2.1rem;
        }

        .icon-grid-item p {
            color: var(--gray);
            font-weight: 300;
            line-height: 1.7;
        }

         
        .quote-block {
            background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-bg) 100%);
            border-radius: 10px;
            padding: 80px 60px;
            margin-bottom: 80px;
            color: var(--light);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255, 152, 0, 0.3);
        }

        .quote-block::before {
            content: '"';
            position: absolute;
            font-size: 25rem;
            color: rgba(255, 152, 0, 0.1);
            font-family: 'Archivo Black', sans-serif;
            top: -100px;
            left: 30px;
            line-height: 1;
            z-index: 0;
        }

        .quote-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .quote-image {
            border-radius: 50%;
            overflow: hidden;
            width: 250px;
            height: 250px;
            border: 5px solid var(--dark-bg);
            box-shadow: var(--shadow);
            margin: 0 auto;
        }

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

        .quote-text {
            font-size: 1.5rem;
            line-height: 1.9;
            font-style: italic;
            margin-bottom: 25px;
            color: var(--light);
            font-weight: 300;
            position: relative;
            padding-left: 30px;
        }

        .quote-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .quote-author {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
        }

        .quote-author + p {
            color: var(--gray);
            font-weight: 300;
            font-size: 1rem;
            margin-top: 5px;
        }

         
        .text-columns-block {
            background-color: rgba(50, 1, 1, 0.3);
            border-radius: 10px;
            padding: 70px 60px;
            margin-bottom: 80px;
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .text-columns-block > h3 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.0;
	    text-align: center;
        }

        .text-columns-block > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: var(--gray);
            font-weight: 300;
            line-height: 1.8;
            font-size: 1.1rem;
        }

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

        .text-column {
            padding: 40px 35px;
            background-color: var(--dark-bg);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 152, 0, 0.1);
        }

        .text-column:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary);
        }

        .text-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .text-column h4 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary);
			line-height: 1.1;
        }

        .text-column p {
            color: var(--light);
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .text-column ul {
            list-style: none;
            margin: 25px 0;
        }

        .text-column ul li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            padding-left: 30px;
            color: var(--light);
            font-weight: 300;
        }

        .text-column ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent3);
            font-weight: bold;
            font-size: 1.2rem;
        }

         
        .gallery-text-block {
            margin-bottom: 80px;
        }

        .gallery-text-block h3 {
            text-align: center;
            margin-bottom: 25px;
            font-size: 2.8rem;
            color: var(--primary);
        }

        .gallery-text-block > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: var(--gray);
            font-weight: 300;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: 300px 300px;
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .gallery-item:first-child {
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-text {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(50, 1, 1, 0.9));
            color: var(--light);
            padding: 25px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-text {
            transform: translateY(0);
        }

        .gallery-text h4 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .gallery-text p {
            color: var(--gray);
            font-weight: 300;
            font-size: 0.95rem;
        }

         
        .timeline-block {
            background-color: var(--dark);
            border-radius: 10px;
            padding: 70px 60px;
            margin-bottom: 80px;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .timeline-block h3 {
            text-align: center;
            margin-bottom: 25px;
            font-size: 2.8rem;
            color: var(--primary);
        }

        .timeline-block > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: var(--gray);
            font-weight: 300;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 40px auto 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--primary);
            transform: translateX(-50%);
        }

        .timeline-item {
            margin-bottom: 50px;
            position: relative;
            width: 50%;
            padding: 20px 40px;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            background-color: rgba(50, 1, 1, 0.3);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 30px;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid rgba(50, 1, 1, 0.3);
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            left: -10px;
            top: 30px;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-right: 10px solid rgba(50, 1, 1, 0.3);
        }

        .timeline-date {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark-bg);
            padding: 8px 20px;
            border-radius: 5px;
            font-size: 0.9rem;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .timeline-content h4 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .timeline-content p {
            color: var(--light);
            font-weight: 300;
            line-height: 1.7;
        }

         
        .features {
            background-color: rgba(50, 1, 1, 0.3);
        }

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

        .feature-card {
            background-color: var(--dark);
            padding: 50px 35px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid rgba(255, 152, 0, 0.1);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary);
        }

        .feature-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 30px;
            display: block;
        }

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

        .feature-card p {
            color: var(--light);
            font-weight: 300;
            line-height: 1.7;
        }

         
        .parallax-section {
            height: 70vh;
            background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light);
            position: relative;
        }

        .parallax-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(50, 1, 1, 0.85);
        }

        .parallax-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }

        .parallax-content h2 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            color: var(--primary);
        }

        .parallax-content p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--light);
            font-weight: 300;
        }

         
        .pricing {
            background-color: var(--dark);
        }

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

        .pricing-card {
            background-color: rgba(50, 1, 1, 0.3);
            border-radius: 10px;
            padding: 50px 35px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .pricing-card.popular {
            transform: scale(1.05);
            border: 2px solid var(--primary);
            background-color: rgba(50, 1, 1, 0.5);
        }

        .pricing-card.popular::before {
            content: 'ПОПУЛЯРНЫЙ';
            position: absolute;
            top: 20px;
            right: -35px;
            background-color: var(--accent);
            color: var(--dark-bg);
            padding: 8px 45px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary);
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-card h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .price {
            font-size: 4rem;
            color: var(--primary);
            margin: 30px 0;
            font-family: 'Archivo Black', sans-serif;
        }

        .price span {
            font-size: 1.5rem;
            color: var(--gray);
            font-family: 'Inter', sans-serif;
            font-weight: 300;
        }

        .pricing-card ul {
            list-style: none;
            margin-bottom: 40px;
            text-align: left;
        }

        .pricing-card ul li {
            padding: 12px 0;
            color: var(--light);
            font-weight: 300;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            padding-left: 30px;
        }

        .pricing-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent3);
            font-weight: bold;
        }

         
        .testimonials {
            background-color: rgba(50, 1, 1, 0.3);
        }

        .testimonials-slider {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            min-height: 350px;
        }

        .testimonial-slide {
            background-color: var(--dark);
            padding: 50px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 0 20px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            position: absolute;
            width: calc(100% - 40px);
            top: 0;
            left: 0;
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .testimonial-slide.active {
            opacity: 1;
            position: relative;
        }

        .testimonial-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 25px;
            overflow: hidden;
            border: 4px solid var(--primary);
            box-shadow: var(--shadow);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: var(--light);
            font-size: 1.2rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .testimonial-slide h4 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .testimonial-slide p {
            color: var(--gray);
            font-weight: 300;
            font-size: 0.95rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: var(--dark-bg);
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }

        .slider-dot.active {
            background-color: var(--primary);
            transform: scale(1.3);
        }

         
        .faq {
            background-color: var(--dark);
        }

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

        .faq-item {
            margin-bottom: 25px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .faq-question {
            padding: 25px 30px;
            background-color: rgba(50, 1, 1, 0.3);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background-color 0.3s;
            color: var(--light);
            font-size: 1.1rem;
        }

        .faq-question:hover {
            background-color: rgba(255, 152, 0, 0.1);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            background-color: var(--dark-bg);
        }

        .faq-answer.open {
            padding: 30px;
            max-height: 300px;
        }

        .faq-answer p {
            color: var(--light);
            font-weight: 300;
            line-height: 1.8;
        }

        .faq-question i {
            transition: transform 0.3s;
            color: var(--primary);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

         
        .team {
            background-color: rgba(50, 1, 1, 0.3);
        }

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

        .team-member {
            background-color: var(--dark);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .team-member.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary);
        }

        .member-photo {
            height: 300px;
            overflow: hidden;
        }

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

        .team-member:hover .member-photo img {
            transform: scale(1.1);
        }

        .member-info {
            padding: 30px;
            text-align: center;
        }

        .team-member h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .team-member p {
            color: var(--gray);
            font-weight: 300;
        }

         
        .stats {
            background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-bg) 100%);
            color: var(--light);
            padding: 100px 5%;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            text-align: center;
        }

        .stat-item {
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-number {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: var(--primary);
            font-family: 'Archivo Black', sans-serif;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .stat-text {
            font-size: 1.3rem;
            color: var(--light);
            font-weight: 300;
        }

         
        .contact {
            background-color: var(--dark);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--dark-red);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            border: 2px solid rgba(255, 152, 0, 0.3);
        }

        .contact-item div h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .contact-item div p {
            color: var(--light);
            font-weight: 300;
        }

        .contact-form {
            background-color: rgba(50, 1, 1, 0.3);
            padding: 50px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 18px 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
            background-color: var(--dark-bg);
            color: var(--light);
            font-weight: 300;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.2);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray);
        }

         
        .footer {
            background-color: var(--dark-red);
            color: var(--light);
            padding: 80px 5% 40px;
        }

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

        .footer-column h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            color: var(--primary);
        }
 
        .footer-column h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            color: var(--primary);
        }

 

        .footer-column p {
    color: var(--light);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
        }

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

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

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 300;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--dark-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255, 152, 0, 0.3);
        }

        .social-icon:hover {
            background-color: var(--primary);
            color: var(--dark-bg);
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 300;
        }

         
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .floating-element {
            animation: float 5s ease-in-out infinite;
        }

         
        @media (max-width: 1200px) {
            .article-content {
                grid-template-columns: 1fr;
            }
            
            .article-sidebar {
                order: -1;
            }
            
            .image-left-block,
            .text-left-block,
            .alternating-card {
                grid-template-columns: 1fr;
            }
            
            .alternating-card:nth-child(even) .card-image,
            .alternating-card:nth-child(even) .card-content {
                order: initial;
            }
            
            .quote-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .quote-image {
                margin: 0 auto 40px;
            }
            
            .gallery-container {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 250px 250px 250px;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 80px;
                padding-right: 20px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -10px;
                right: auto;
                border-right: 10px solid rgba(50, 1, 1, 0.3);
                border-left: none;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 5%;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(27, 27, 29, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                z-index: 999;
                border-top: 2px solid var(--dark-red);
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }

            .nav-links li {
                margin: 20px 0;
            }

            .mobile-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

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

            section {
                padding: 80px 5%;
            }

            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .article-intro,
            .article-highlight,
            .article-comparison,
            .article-conclusion,
            .article-comments {
                padding: 50px 30px;
            }
            
            .article-intro h1 {
                font-size: 2.5rem;
            }
			
			
			
            
            .article-author {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .author-avatar {
                margin: 0 auto 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .image-left-block .content,
            .text-left-block,
            .alternating-card .card-content,
            .icon-grid-block,
            .quote-block,
            .text-columns-block,
            .timeline-block {
                padding: 40px 30px;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 200px);
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
        }

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

            .cta-button {
                padding: 15px 35px;
            }

            .parallax-content h2 {
                font-size: 2.5rem;
            }

            .price {
                font-size: 3.2rem;
            }
            
            .article-intro .meta {
                flex-direction: column;
                gap: 15px;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
        }


    .bonus-image-container {
        text-align: center;  
    }
    .bonus-image-container img {
        width: 50%;
        display: block;
        margin: 0 auto;  
    }
 
    @media (max-width: 768px) {
        .bonus-image-container img {
            width: 100%;  
            margin-top: 100px;  
            margin-left: auto;
            margin-right: auto;
        }
    }











