:root {
    --black: #4D4D4D;
    --accent: #D9E006;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    line-height: 1.3;
    color: var(--black);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.separator {
    border: none;
    border-top: 4px solid var(--accent);
}

/* Header */
.header {
    padding: 70px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    align-items: flex-end;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 90px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 5px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.5s ease;
}

/* Hero Section */
.hero {
    background-image: url('images/hero-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    align-items: center;
    padding-bottom: 2em;

}

.hero-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-icon {
    height: 45px;
    display: flex;
    margin-bottom: 20px;
}

.service-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background-color: #fff;
}

.instagram-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.about section {
    margin-bottom: 40px;
}

.steps-list {
    list-style: decimal;
    counter-reset: step-counter;
    padding-left: 20px;
    font-weight: 800;
}

.steps-list li {
    font-weight: 400;
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

.steps-list li strong {
    color: #333;
    font-weight: 600;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.partner-logo {
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
}

.partner-logo span {
    font-weight: 600;
    color: #666;
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.footer-info p {
    font-weight: 300;
}

.footer-info a {
    color: white;
}

.footer-info strong {
    font-weight: 500;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-cta {
    text-align: left;
}

.footer-cta h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
}

/* Responsive Design */
@media (max-height: 770px) and (min-width: 1024px),
(max-height: 700px) and (width < 1024px),
(height < 800px) and (890px > width > 770px) {
    .hero {
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.45),
                rgba(255, 255, 255, 0.45)),
            url('images/hero-bg.jpg');
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        margin-bottom: 0;
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
    }

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

@media (max-width: 768px) {
    .header {
        position: relative;
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 0;
        align-items: start;
    }

    .logo {
        height: 50px;
    }

    .nav {
        gap: 20px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-cta {
        text-align: center;
    }
}

@media (max-width: 480px) {

    .container {
        padding: 0 15px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 12px;
    }
}