* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #ff92c2;
    box-shadow: 0 2px 5px rgba(255, 146, 194, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heart {
    color: #ff0000;
    animation: pulse 1.5s infinite;
    display: inline-block;
}

/* Уникальный логотип */
.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff7eb3 0%, #ff92c2 60%, #ffd1e6 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: -0.5px;
    box-shadow: 0 6px 18px rgba(255, 146, 194, 0.45);
}

.logo-text {
    background: linear-gradient(90deg, #fff 0%, #ffe3ef 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

main {
    margin-top: 4rem;
}

.hero {
    background: url('images/header.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 2rem;
    text-align: center;
    color: #ff92c2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -4rem;
}

.hero h1, .hero p, .hero .button {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .button {
    background-color: #ff92c2;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(255, 146, 194, 0.3);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero .button:hover {
    background-color: #ff7eb3;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(255, 146, 194, 0.4);
}

/* Темная полупрозрачная панель поверх хедера, как в референсе */
.hero .overlay-box {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    max-width: 960px;
    width: 90%;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Панель уведомления/объявления по центру, как на скрине */
.hero .notice-panel {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #ffffff;
    text-align: left;
    max-width: 960px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.hero .notice-panel ul {
    list-style: none;
}

.hero .notice-panel li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

.hero .notice-panel a {
    color: #ffd1e6;
    text-decoration: underline;
}

.products {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ff92c2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    border: 1px solid #ffe0ee;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1rem;
    color: #ff92c2;
}

.product-card .price {
    padding: 0 1rem;
    color: #ff92c2;
    font-weight: bold;
}

.product-card .description {
    flex-grow: 1;
    padding: 1rem;
    color: #4b5563;
}

.product-card .pulse-button {
    margin: 1rem;
    text-align: center;
}

.product-card .pulse-button {
    text-decoration: none;
    color: white;
    display: inline-block;
}

.contact {
    background-color: #f3f4f6;
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    color: #ff92c2;
    margin-bottom: 2rem;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #4b5563;
}

footer {
    background-color: #ff92c2;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

.about-section {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h1 {
    text-align: center;
    color: #ff92c2;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    color: #ff92c2;
    margin: 2rem 0 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.about-text ul {
    list-style-type: none;
    margin-left: 1rem;
}

.about-text ul li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    position: relative;
}

.about-text ul li:before {
    content: "•";
    color: #ff92c2;
    position: absolute;
    left: -1rem;
}

.about-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.access-section {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.access-section h1 {
    text-align: center;
    color: #ff92c2;
    margin-bottom: 3rem;
}

.access-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.method-card h2 {
    color: #ff92c2;
    margin-bottom: 1.5rem;
}

.method-content h3 {
    color: #ff92c2;
    margin: 1.5rem 0 1rem;
}

.method-content ul, .method-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.method-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.note {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #4b5563;
    font-style: italic;
}

.security-tips {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.security-tips h2 {
    color: #ff92c2;
    margin-bottom: 1.5rem;
}

.security-tips ul {
    list-style-type: none;
    margin-left: 1rem;
}

.security-tips ul li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    position: relative;
}

.security-tips ul li:before {
    content: "•";
    color: #ff92c2;
    position: absolute;
    left: -1rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .access-methods {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h1 {
    text-align: center;
    color: #ff92c2;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2, .contact-form h2 {
    color: #ff92c2;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #ff92c2;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #4b5563;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #ff92c2;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #ff7eb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(255, 146, 194, 0.3);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.pulse-button {
    background-color: #ff0000;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(255, 0, 0, 0.3);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: buttonPulse 2s infinite;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.pulse-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(255, 0, 0, 0.4);
    animation: none;
}

.info-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

/* Раздел отзывов */
.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fff0f6 100%);
    border-top: 1px solid #ffe0ee;
    border-bottom: 1px solid #ffe0ee;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ff92c2;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 146, 194, 0.15);
    border: 1px solid #ffe0ee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 146, 194, 0.25);
}

.testimonial-card .text {
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.testimonial-card .author {
    color: #ff92c2;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #ff92c2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: #4b5563;
    line-height: 1.6;
}

.info-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.about-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: #000000;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.about-hero p {
    font-size: 1.2rem;
    color: #000000;
}

.about-content {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    color: #ff92c2;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-text ul {
    list-style-type: none;
    padding: 0;
}

.about-text ul li {
    color: #4b5563;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text ul li:before {
    content: "❤";
    position: absolute;
    left: 0;
    color: #ff92c2;
}

.about-images {
    display: grid;
    gap: 2rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    margin: 0;
    text-align: center;
}

.about-features {
    padding: 4rem 2rem;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #ff92c2;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #4b5563;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
}

.products-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/products-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: #000000;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.products-hero p {
    font-size: 1.2rem;
    color: #000000;
}

.product-features {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.product-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-features .feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-features .feature:hover {
    transform: translateY(-5px);
}

.product-features .feature h3 {
    color: #ff92c2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-features .feature p {
    color: #4b5563;
}

@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-features .features-grid {
        grid-template-columns: 1fr;
    }
}

.access-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/access-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: #000000;
}

.access-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.access-hero p {
    font-size: 1.2rem;
    color: #000000;
}

.access-content {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.access-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.access-step {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.access-step h3 {
    color: #ff92c2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.access-step p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.access-step img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.access-step:hover img {
    transform: scale(1.02);
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.info-box h3 {
    color: #ff92c2;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-box ul {
    list-style-type: none;
    padding: 0;
}

.info-box ul li {
    color: #4b5563;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff92c2;
}

.access-features {
    padding: 4rem 2rem;
    background-color: white;
}

@media (max-width: 768px) {
    .access-grid {
        grid-template-columns: 1fr;
    }
    
    .access-hero h1 {
        font-size: 2.5rem;
    }
    
    .access-step {
        margin-bottom: 2rem;
    }
} 