        /* General Styles */
        body {
            margin: 0;
            font-family: 'TT Hoves', sans-serif;
            background-color: #111111;
            color: #ffffff;
        }

        /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: transparent;
            padding: 10px 20px;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }
        .navbar img {
            width: 60px; /* Logo size */
            height: 60px; /* Logo size */
        }
        .navbar a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            font-size: 16px;
            transition: color 0.3s ease, transform 0.3s ease;
            margin-right: 40px;
        }
        .navbar a:hover {
            color: #FFD700;
            transform: scale(1.1);
        }
        .navbar .contacto-btn {
            background-color: #FFD700;
            color: #000000;
            padding: 10px 20px;
            border-radius: 12px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .navbar .contacto-btn:hover {
            background-color: #000000;
            transform: scale(1.1);
        }

        /* Container for Contact Content */
        .container {
            display: flex;
            flex-direction: row;
            width: 80%;
            max-width: 1200px;
            margin: 100px auto 20px;
            padding: 20px;
            background-color: #222222;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Image Section */
        .image-section {
            flex: 1;
        }
        .image-section img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        /* Content Section */
        .content-section {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .content-section h1 {
            font-size: 40px;
            font-weight: 700;
            color: #FFD700;
            margin-bottom: 20px;
        }
        .content-section p {
            font-size: 18px;
            margin: 10px 0;
        }
        .contact-info p {
            margin: 5px 0;
        }

        /* Social Icons */
        .social-icons {
            margin-top: 20px;
            display: flex;
        }
        .social-icons a {
            color: #ffffff;
            font-size: 24px;
            margin-right: 15px;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-icons a:hover {
            color: #FFD700;
            transform: scale(1.3);
        }

        /* Video Section */
        .video-section {
            margin-top: 20px;
            border-radius: 10px;
            overflow: hidden;
        }
        .video-section iframe {
            width: 100%;
            height: 350px;
            border: none;
            border-radius: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                padding: 15px;
            }
            .content-section h1 {
                font-size: 32px;
            }
            .content-section p {
                font-size: 16px;
            }
        }