* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #ff67ac;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::after {
    content: '❤';
    color: #ff0000;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #ff0000;
    background-color: rgba(255, 255, 255, 0.1);
}

main {
    margin-top: 80px;
}

/* Общие стили для hero секций */
.hero, .about-hero, .products-hero, .vpn-hero, .contact-hero {
    background: url('images/header.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
}

.hero::before, .about-hero::before, .products-hero::before, .vpn-hero::before, .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.hero h1, .about-hero h1, .products-hero h1, .vpn-hero h1, .contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 1;
}

.hero p, .about-hero p, .products-hero p, .vpn-hero p, .contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    z-index: 1;
    max-width: 600px;
}

/* Стили для главной страницы */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff67ac;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background-color 0.3s;
    z-index: 1;
    border: 2px solid white;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #ff4d9e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pulse-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    font-weight: bold;
    animation: buttonPulse 2s infinite;
    z-index: 1;
    border: 2px solid white;
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.pulse-button:hover {
    background-color: #cc0000;
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pulse-button-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    font-weight: bold;
    font-size: 1.5rem;
    animation: buttonPulseLarge 2s infinite;
    z-index: 1;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@keyframes buttonPulseLarge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.pulse-button-large:hover {
    background-color: #cc0000;
    animation: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Новые стили для специальных предложений */
.special-offers {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #ff67ac;
    margin: 1rem auto;
    border-radius: 2px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.offer-badge.popular {
    background: #ff67ac;
}

.offer-badge.limited {
    background: #4a90e2;
}

.offer-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.offer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.offer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.offer-price {
    margin-bottom: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0.5rem;
}

.new-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffeb3b;
}

.offer-btn {
    background: #ff67ac;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
}

.offer-btn:hover {
    background: #ff4d9e;
    transform: scale(1.05);
}

.featured-products {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ff67ac;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: #ff67ac;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-description {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.product-description p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.product-description ul {
    list-style: none;
    color: #888;
    font-size: 0.9rem;
}

.product-description ul li {
    margin-bottom: 0.3rem;
    padding-left: 1.2rem;
    position: relative;
}

.product-description ul li::before {
    content: '❄';
    position: absolute;
    left: 0;
    color: #ff67ac;
}

.price {
    padding: 0 1rem;
    color: #ff67ac;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: right;
}

/* Новые стили для галереи */
.gallery-section {
    background: #f0f8ff;
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 103, 172, 0.9);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Новые стили для "Почему выбирают нас" */
.why-choose-us {
    background: #f8f9fa;
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ff67ac;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Стили для страницы "О нас" */
.about-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-text h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-text ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Стили для страницы товаров */
.products-catalog {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.filter-btn.active {
    background: #ff67ac;
    color: white;
}

.buy-btn {
    background: #ff67ac;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.buy-btn:hover {
    background: #ff4d9e;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Стили для страницы VPN */
.vpn-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.vpn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vpn-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.vpn-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.vpn-section h3 {
    color: #ff67ac;
    margin: 1.5rem 0 1rem;
}

.vpn-section ul, .vpn-section ol {
    margin-left: 1rem;
}

.vpn-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.vpn-image:hover {
    transform: scale(1.02);
}

.vpn-description {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.vpn-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Стили для страницы контактов */
.contact-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    padding: 0.5rem 1rem;
    background: #ff67ac;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background: #ff4d9e;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #ff67ac;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #ff4d9e;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.contact-promo {
    margin-top: 2rem;
    background: #fff5f9;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-promo img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact-promo h3 {
    color: #ff67ac;
    margin-bottom: 0.5rem;
}

.contact-promo p {
    color: #666;
    font-size: 0.9rem;
}

/* New styles for VPN promotional section */
.vpn-promo {
    background: #f0f8ff;
    padding: 4rem 0;
    margin-top: 2rem;
}

.vpn-promo .promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.vpn-promo .promo-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vpn-promo .promo-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff67ac;
}

.vpn-promo .promo-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .vpn-promo .promo-content {
        grid-template-columns: 1fr;
    }
}

/* New styles for products promotional section */
.products-promo {
    background: linear-gradient(135deg, #ff67ac 0%, #ff4d9e 100%);
    padding: 4rem 0;
    color: white;
    margin-top: 2rem;
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.promo-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.promo-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promo-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .promo-content {
        grid-template-columns: 1fr;
    }
}

.about-section {
    background-color: #f9f9f9;
    padding: 4rem 5%;
    margin-top: 4rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #ff67ac;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff67ac;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #666;
    font-size: 1rem;
}

.reputation {
    margin-top: 3rem;
}

.reputation h3 {
    color: #ff67ac;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.review p {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.reviewer {
    color: #ff67ac;
    font-weight: bold;
}

.about-images {
    display: grid;
    gap: 1.5rem;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-images img:hover {
    transform: scale(1.02);
}

/* New styles for products FAQ section */
.products-faq {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #ff67ac;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* New styles for contact benefits */
.contact-benefits {
    margin-top: 2rem;
    background: #fff5f9;
    padding: 1.5rem;
    border-radius: 10px;
}

.contact-benefits h3 {
    color: #ff67ac;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-benefits ul {
    list-style-position: inside;
    color: #666;
}

.contact-benefits ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.contact-benefits ul li::before {
    content: '✓';
    color: #ff67ac;
    position: absolute;
    left: 0;
}

/* New styles for security tips */
.security-tips {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
    margin-top: 2rem;
}

.security-tips .section-title {
    color: white;
}

.security-tips .section-title::after {
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tip-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tip-card p {
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: #ff67ac;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0 1rem;
    }

    .hero h1, .about-hero h1, .products-hero h1, .vpn-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements {
        grid-template-columns: 1fr;
    }
    
    .reviews {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}