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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1B1B1B;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    background-color: #2F2F2F;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f4b942;
}

/* Hero Section */
.hero {
    padding: 60px 0 100px 0;
    background-color: #1B1B1B;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #ffffff;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    background-color: #f4b942;
    color: #fff;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    border-radius: 8px;
background: #FFBC2B;
backdrop-filter: blur(21.043128967285156px);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 185, 66, 0.3);
}

.hero-image {
    flex: 1;
    max-width: 520px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 36px;
    font-weight: 600;
    color: #f4b942;
    margin-bottom: 20px;
}

.why-choose .subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
}

.why-choose p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-image {
    margin-bottom: 60px;
}

.features-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
}

.features-list h3 {
    font-size: 24px;
    font-weight: 600;
    color: #f4b942;
    margin-bottom: 30px;
}

.features-list ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.features-list li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.features-list li::before {
    content: "•";
    color: #f4b942;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.blog-button {
    display: inline-block;
    background-color: #f4b942;
    color: #2F2F2F;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 185, 66, 0.3);
}

/* Our Advice Section */
.advice-section {
    padding: 80px 0;
}

.advice-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: #f4b942;
    text-align: center;
    margin-bottom: 60px;
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.advice-item {
    text-align: center;
}

.advice-item img {
    width: 100%;
    max-width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.advice-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.advice-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

/* Culture Section */
.culture-section {
    padding: 60px 0;
    display: flex;
    align-items: center;
    gap: 60px;
}

.culture-content {
    flex: 1;
}

.culture-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #f4b942;
    margin-bottom: 30px;
}

.culture-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
}

.culture-image {
    flex: 1;
}

.culture-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #2F2F2F;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
}

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

.copyright {
    font-size: 14px;
    color: #888888;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 20px;
    border-top: 1px solid #333;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: #cccccc;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #f4b942;
    color: #2F2F2F;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #cccccc;
    border: 1px solid #555;
}

.cookie-btn:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
 
    .nav-links.active {
        display: flex;
    }
    nav{
        flex-direction: column;
        gap: 30px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0 60px 0;
        gap: 40px;
    }

    .hero .container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .advice-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .culture-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .why-choose h2 {
        font-size: 28px;
    }

    .why-choose .subtitle {
        font-size: 20px;
    }

    .advice-section h2 {
        font-size: 28px;
    }

    .culture-content h2 {
        font-size: 28px;
    }
}

.privacy{
    padding: 100px 0px;
    padding-top: 60px;
}
.privacy h2 {
    text-align: center;
    color: #FFF;
text-align: center;

font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
margin-bottom: 30px;
}