/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem 0;
    position: relative;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.logo h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #64b5f6;
    text-align: center;
    letter-spacing: 0.1rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background:  #1B266B;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.hero-description {
    font-size: 1.6rem;
    font-weight: 400;
    color: #e0e0e0;
    /*max-width: 90rem;*/
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: left;
}

.hero-image {
    width: 100%;
    /*max-width: 80rem;*/
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

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

/* Tips Section */
.tips-section {
    padding: 6rem 0;
    background:  #1B266B;
}

.tip-card {
    background: linear-gradient(135deg, #1e1e3a 0%, #252547 100%);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.4);
}

.tip-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #64b5f6;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.tip-description {
    font-size: 1.6rem;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expert-tip {
    background:  #1B266B;
    border-radius: 1rem;
    padding: 2.5rem;
    margin-top: 3rem;
    border-left: 0.4rem solid #64b5f6;
}

.expert-tip h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #64b5f6;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.expert-tip p {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Conclusion */
.conclusion {
    background: linear-gradient(135deg, #1e1e3a 0%, #252547 100%);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.conclusion-text {
    font-size: 1.7rem;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.conclusion-text:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 4rem 0;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.footer-links a {
    color: #64b5f6;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #90caf9;
}

.footer-copyright {
    color: #b0b0b0;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #1e1e3a 0%, #252547 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 1.4rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-accept,
.cookie-decline {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
    background: #64b5f6;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #42a5f5;
}

.cookie-decline {
    background: transparent;
    color: #e0e0e0;
    border: 0.1rem solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }

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

    .hero-title {
        font-size: 3.6rem;
    }

    .hero-description {
        font-size: 1.8rem;
    }

    .tip-title {
        font-size: 2.8rem;
    }

    .tip-description {
        font-size: 1.7rem;
    }

    .expert-tip h4 {
        font-size: 1.6rem;
    }

    .expert-tip p {
        font-size: 1.6rem;
    }

    .conclusion-text {
        font-size: 1.8rem;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .cookie-popup {
        left: 3rem;
        right: 3rem;
        max-width: 60rem;
        margin: 0 auto;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero-description {
        font-size: 1.9rem;
    }

    .tips-section {
        padding: 8rem 0;
    }

    .tip-card {
        padding: 5rem 4rem;
    }

    .tip-title {
        font-size: 3.2rem;
    }

    .tip-description {
        font-size: 1.8rem;
    }

    .expert-tip {
        padding: 3rem;
    }

    .expert-tip h4 {
        font-size: 1.7rem;
    }

    .expert-tip p {
        font-size: 1.7rem;
    }

    .conclusion {
        padding: 5rem 4rem;
    }

    .conclusion-text {
        font-size: 1.9rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-links {
        gap: 4rem;
    }

    .footer-links a {
        font-size: 1.5rem;
    }

    .footer-copyright {
        font-size: 1.4rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 4.8rem;
    }

    .hero-description {
        font-size: 2rem;
    }

    .tip-title {
        font-size: 3.6rem;
    }

    .tip-description {
        font-size: 1.9rem;
    }

    .expert-tip h4 {
        font-size: 1.8rem;
    }

    .expert-tip p {
        font-size: 1.8rem;
    }

    .conclusion-text {
        font-size: 2rem;
    }
}
p{
    text-align: left;
}