
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            width: 100%;
            min-height: 100vh;
            color: var(--text-color);
            background-color: var(--light-gray);
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary-color);
        }
        
        button, input, textarea, select {
            outline: none;
            border: none;
            background: none;
        }
        
        button {
            cursor: pointer;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .flex {
            display: flex;
        }
        
        .flex-col {
            flex-direction: column;
        }
        
        .items-center {
            align-items: center;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .gap-10 {
            gap: 10px;
        }
        
        .gap-20 {
            gap: 20px;
        }
        
        .gap-30 {
            gap: 30px;
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-primary {
            color: var(--primary-color);
        }
        
        .bg-primary {
            background-color: var(--primary-color);
        }
        
        .bg-white {
            background-color: var(--white);
        }
        
        .rounded {
            border-radius: 8px;
        }
        
        .shadow {
            box-shadow: var(--shadow);
        }
        
        .transition {
            transition: var(--transition);
        }



        /* ===== CONTACT SECTION ===== */
        .contact-section {
            padding: 40px 0;
        }
        
        .contact-header {
            background-color: var(--white);
            padding: 30px;
        }
        
        .breadcrumb {
            font-size: 12px;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }
        
        .breadcrumb a:last-child {
            color: var(--primary-color);
        }
        .breadcrumb a{
            text-decoration: none;
            color: var(--primary-color);
            font-size: 15px;
            font-weight: 500;
        }
        .breadcrumb a:hover{
            color: var(--accent-color);
        }
        
        .contact-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 20px;
        }
        
        .contact-content {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }
        
        .contact-form {
            flex: 2;
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .form-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .form-description {
            font-size: 15px;
            color: var(--dark-gray);
            margin-bottom: 25px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(42, 82, 190, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-color);
            color: white;
            font-size: 16px;
            font-weight: 600;
            border-radius: 6px;
            transition: var(--transition);
        }
        
        
        
        .contact-info1 {
            flex: 1;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .contact-info1 .contact-icon {
            font-size: 50px;
            color: var(--primary-color);
            flex-shrink: 0;
        }
        
        .contact-info1 .whatsapp-icon {
            color: #25D366;
        }
        
        .contact-info1 .phone-icon {
            color: var(--primary-color);
        }
        
       .contact-info1 .email-icon {
            color: #D44638;
        }
        
        .contact-method-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .contact-method-text {
            font-size: 15px;
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        .contact-method-text span {
            color: var(--text-color);
            font-weight: 600;
        }
        
        .social-media {
            margin-top: 40px;
        }
        
        .social-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            font-size: 24px;
            color: var(--text-color);
            transition: var(--transition);
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
        }
        
        .facebook-icon:hover {
            color: #1877F2;
        }
        
        .twitter-icon:hover {
            color: #1DA1F2;
        }
        
        .instagram-icon:hover {
            color: #E4405F;
        }
        
        .linkedin-icon:hover {
            color: #0A66C2;
        }



        .back-to-top {
            background-color: var(--primary-color);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            bottom: 30px;
            right: 30px;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
        }
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 1024px) {
            
            .contact-content {
                flex-direction: column;
            }
            
            .contact-form, .contact-info {
                width: 100%;
            }
        }
        
        
        
        @media (max-width: 480px) {
            .contact-method {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .contact-icon {
                margin-bottom: 10px;
            }
            
        }
       