/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

h1 {
    color: #4a0707;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

section {
    padding: 3rem 10%;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: #4a0707;
    font-weight: bold;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #4a0707;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    color: #4a0707;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.cta-button {
    display: inline-block;
    background-color: #c20000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #a00000;
}

/* Features Section */
.features {
    padding-top: 0;
}

.feature-cards {
    display: flex;
    gap: 1.5rem;
}

/* About Section */
.about-section {
    padding: 3rem 10%;
}

.about-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-phones {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.phone-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.overlay-text {
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.white-text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.red-text {
    color: #e73535;
    font-size: 1.2rem;
    font-weight: bold;
}

.phone-card img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1.2;
}

.about-content h1 {
    color: #4a0707;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content h2 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

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

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .feature-phones {
        width: 100%;
        justify-content: center;
        margin-bottom: 2rem;
    }
}

/* About Section */
.about {
    background-color: #fff;
}

.about h1 {
    color: #4a0707;
    margin-top: 0.5rem;
}

.about p {
    margin-bottom: 1.5rem;
}

/* Why Choose Us Section */
.why-choose {
    background-color: #fff;
}

.benefits-grid, .advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card, .advantage-card {
    background-color: #fff3f3;
    padding: 1.5rem;
    border-radius: 8px;
}

.benefit-card h3, .advantage-card h3, .tip-card h3 {
    color: #000;
    font-weight: bold;
    text-align: left;
}

.wide {
    grid-column: span 2;
}

.app-screenshots {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
}

.screenshot {
    flex: 1;
    background-color: #4a0707;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: white;
}

.screenshot h3 {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.4;
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Expert Tips Section */
.expert-tips {
    background-color: #fff;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tip-card {
    background-color: #fff3f3;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expert-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #fff3f3;
    padding: 1.5rem;
    border-radius: 8px;
}

.rating {
    margin-bottom: 1rem;
}

.star {
    color: gold;
    font-size: 1.2rem;
}

.testimonial-card h3 {
    color: #333;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    background-color: #4a0707;
    padding: 3rem 10%;
    color: white;
    text-align: center;
}

.contact h1 {
    color: white;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #f1f1f1;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 4px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

#contact-form button {
    background-color: white;
    color: #4a0707;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.arrow {
    margin-left: 0.5rem;
}

/* Footer */
.site-footer {
    background-color: white;
    padding: 2rem 10%;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.twitter {
    background-image: url('./imgs/twitter.png');
}

.instagram {
    background-image: url('./imgs/instagram.png');
}

.twitch {
    background-image: url('./imgs/twitch.png');
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #4a0707;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    padding: 1rem;
    border-top: 1px solid #ddd;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h2 {
    color: #4a0707;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.accept {
    background-color: #4a0707;
    color: white;
}

.decline {
    background-color: #f0f0f0;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
    section {
        padding: 3rem 5%;
    }
    
    header {
        padding: 1rem 5%;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .benefits-grid, .advantages-grid, .tips-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .wide {
        grid-column: span 1;
    }
    
    .app-screenshots {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .feature-cards {
        flex-direction: column;
    }
    
    nav ul {
        display: none;
    }
}

@media (max-width: 576px) {
    .cta-button {
        width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}