/* Landing Page Container */
.gg-landing-page {
   
    margin: 0 auto;
    
}

/* Header Section */
.gg-landing-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

/* Intro Text */
.intro-text {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.intro-text p {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Section Styles */
.gg-section {
    margin-bottom: 60px;
    scroll-margin-top: 20px;
}

.gg-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #d4a574;
}

.gg-section-intro {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
    text-align: justify;
}

.gg-section-intro strong {
    color: #2c2416;
    font-weight: 600;
}

/* Grid Layout for Products */
.gg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Product Card */
.gg-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Card Image Container */
.gg-card-img-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gg-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content */
.gg-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gg-card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2416;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gg-card-content p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

/* Button Styles */
.gg-btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #241704;
    color: #241704;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    font-size: 1.4rem;
    padding: 1.2rem 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.6rem;
    letter-spacing: 1px;
    font-family: 'Nunito', "Arial", sans-serif;
    text-decoration: none;
}

.gg-btn:hover {
    background: #241704;
    color: #fff;
    border-color: #241704;
}

/* Tips Section */
.gg-tips {
    background: linear-gradient(135deg, #f8f6f2 0%, #fff 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 60px;
}

.gg-tips h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 20px;
}

.gg-tips p {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.gg-tips-list {
    list-style: none;
    padding-left: 0;
}

.gg-tips-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #e8e6e0;
}

.gg-tips-list li:last-child {
    border-bottom: none;
}

.gg-tips-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 15px;
    color: #d4a574;
    font-weight: bold;
    font-size: 1.3rem;
}

.gg-tips-list strong {
    color: #2c2416;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gg-landing-page {
        padding: 20px 0px;
    }

    .gg-landing-page h1 {
        font-size: 1.8rem;
    }

    .gg-section h2 {
        font-size: 1.5rem;
    }

    .gg-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .intro-text,
    .gg-tips {
        padding: 20px;
    }

    .gg-card-content h3 {
        font-size: 1.2rem;
    }

    .gg-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .gg-landing-page h1 {
        font-size: 1.5rem;
    }

    .intro-text p,
    .gg-section-intro {
        font-size: 1.4rem;
        text-align: left;
    }

    .gg-card-img-container {
        height: 280px;
    }
}




.gg-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.gg-city-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e6e0;
}

.gg-city-img-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.gg-city-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gg-city-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.gg-city-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gg-city-content p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    flex: 1;
}

.gg-city-content .gg-btn {
    align-self: flex-start;
}

/* Responsive dla cities grid */
@media (max-width: 768px) {
    .gg-cities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gg-city-content h2 {
        font-size: 1.5rem;
    }

    .gg-city-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .gg-city-img-container {
        height: 220px;
    }

    .gg-city-content {
        padding: 20px;
    }

    .gg-city-content .gg-btn {
        width: 100%;
        text-align: center;
    }
}