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

body {
    font-family: 'Lora', serif;
    font-style: italic;
    background-color: #FAF7F2;
    color: #333;
    line-height: 1.8;
}

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

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.back-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #5B5A3C;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #5B5A3C;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.back-button a:hover {
    background: #5B5A3C;
    color: white;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.page-header h1 {
    font-size: 48px;
    color: #5B5A3C;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 24px;
    color: #C0A770;
    margin-bottom: 8px;
}

.description {
    font-size: 16px;
    color: #666;
}

.gallery-section {
    margin-bottom: 60px;
}

.gallery-section h2 {
    text-align: center;
    font-size: 32px;
    color: #5B5A3C;
    margin-bottom: 40px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.tips-section {
    margin-bottom: 60px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.tip-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.tip-card i {
    font-size: 48px;
    color: #5B5A3C;
    margin-bottom: 16px;
}

.tip-card h3 {
    font-size: 24px;
    color: #5B5A3C;
    margin-bottom: 20px;
}

.tip-card ul {
    list-style: none;
    text-align: left;
}

.tip-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.tip-card li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #C0A770;
    font-size: 20px;
}

.contact-section {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .back-button {
        top: 10px;
        left: 10px;
    }
    
    .back-button a {
        padding: 10px 16px;
        font-size: 14px;
    }
}
