     
        
        main article {
            line-height: 1.7;
            color: #2a2a2a;
        }
        
        .container {
            font-family: 'Georgia', 'Palatino', serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(135deg, #55262F 0%, #3d1a22 100%);
            color: #B89752;
            padding: 80px 0;
            text-align: center;
            box-shadow: 0 4px 20px rgba(85, 38, 47, 0.3);
        }
        
        header h1 {
            font-size: 3em;
            margin-bottom: 15px;
            font-weight: 700;
            color: #B89752;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }
        
        header p {
            font-size: 1.3em;
            max-width: 800px;
            margin: 0 auto;
            color: #f0e6d8;
            font-style: italic;
        }
        
        main {
            background: white;
            padding: 50px 0;
        }
        
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .intro {
            font-size: 1.15em;
            color: #3a3a3a;
            padding: 35px;
            background: linear-gradient(to right, #fdf9f3, #fcf6ed);
            border-left: 5px solid #B89752;
            margin-bottom: 50px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(184, 151, 82, 0.1);
        }
        
        h2 {
            color: #55262F;
            font-size: 2.2em;
            margin: 50px 0 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #B89752;
            font-weight: 600;
        }
        
        h3 {
            color: #B89752;
            font-size: 1.6em;
            margin: 30px 0 15px;
        }
        
        article section p {
            margin-bottom: 20px;
            text-align: justify;
            color: #444;
        }
        
        ul {
            margin: 25px 0 25px 30px;
        }
        
        ul li {
            margin-bottom: 12px;
            line-height: 1.7;
            color: #555;
        }
        
        ul li::marker {
            color: #B89752;
        }
        
        .contact-box {
            background: linear-gradient(135deg, #55262F 0%, #3d1a22 100%);
            color: #f5f5f5;
            padding: 30px;
            border-radius: 10px;
            margin: 35px 0;
            text-align: center;
            box-shadow: 0 5px 20px rgba(85, 38, 47, 0.3);
            border: 2px solid #B89752;
        }
        
        .contact-box p {
            color: #f0e6d8;
            text-align: center;
        }
        
        .contact-box a {
            color: #B89752;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.3em;
            transition: color 0.3s ease;
        }
        
        .contact-box a:hover {
            color: #d4ab6b;
            text-decoration: underline;
        }
        
        .hotel-list {
            background: linear-gradient(to bottom, #fdf9f3, #ffffff);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid #e8dcc8;
        }
        
        .hotel-list ul {
            list-style: none;
            margin-left: 0;
        }
        
        .hotel-list li {
            padding: 18px;
            background: white;
            margin-bottom: 12px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(184, 151, 82, 0.15);
            border-left: 4px solid #B89752;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .hotel-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(184, 151, 82, 0.25);
        }
        
        .hotel-list li strong {
            color: #55262F;
            font-size: 1.1em;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #55262F 0%, #3d1a22 100%);
            color: #f5f5f5;
            padding: 60px 40px;
            text-align: center;
            margin: 50px 0;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(85, 38, 47, 0.4);
            border: 3px solid #B89752;
        }
        
        .cta-section h2 {
            color: #B89752;
            border: none;
            margin-top: 0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .cta-section p {
            font-size: 1.15em;
            margin-bottom: 25px;
            color: #f0e6d8;
            text-align: center;
        }
        
        .cta-section strong {
            color: #B89752;
            font-size: 1.2em;
        }
        
        .cta-section a {
            color: #B89752;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        
        .cta-section a:hover {
            color: #d4ab6b;
        }
        
  
        
        @media (max-width: 768px) {
            header h1 {
                font-size: 2em;
            }
            
            header p {
                font-size: 1.1em;
            }
            
            h2 {
                font-size: 1.7em;
            }
            
            .intro {
                padding: 25px;
            }
            
            .contact-box, .cta-section {
                padding: 25px 20px;
            }
        }