
        main {
            padding: 120px 20px 40px;
        }
        
        .contact-body {
            display: grid;
            max-width: 1200px;
            margin: 0 auto;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            background-color: rgba(13, 27, 42, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 50px;
            border-radius: 20px;
            border: 1px solid rgba(0, 214, 91, 0.15);
        }

        .contact-info h2 {
            font-size: 42px;
            font-weight: 700;
            color: #00d65b;
            margin-bottom: 15px;
        }

        .contact-info p {
            font-size: 16px;
            color: #c0c0d0;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-info-item .icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(0, 214, 91, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .contact-info-item svg {
            width: 24px;
            height: 24px;
            stroke: #00d65b;
            stroke-width: 2;
        }
        
        .contact-info-item h4 {
            font-size: 16px;
            font-weight: 600;
            color: #00d65b;
            margin-bottom: 5px;
        }

        .contact-info-item span {
            font-size: 15px;
            color: #b0b0c0;
            line-height: 1.5;
            display: block;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
            font-weight: 500;
            color: #00d65b;
        }
        
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 15px;
            background-color: #101d35;
            border: 2px solid #2a3a5e;
            border-radius: 8px;
            color: #f0f0f0;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .form-textarea {
            min-height: 140px;
            resize: vertical;
        }
        
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: #00d65b;
            box-shadow: 0 0 10px rgba(0, 214, 91, 0.2);
        }

        .form-select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300d65b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1.2em;
            padding-right: 3rem;
        }

        .form-select option {
            background: #101d35;
            color: #f0f0f0;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #b0b0c0;
            cursor: pointer;
            margin-top: 20px;
        }

        .checkbox-label input {
            display: none;
        }

        .checkbox-custom {
            width: 20px;
            height: 20px;
            border: 2px solid #4ddcff;
            border-radius: 4px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: border-color 0.3s, background-color 0.3s;
        }

        .checkbox-custom svg {
            width: 14px;
            height: 14px;
            stroke: #0d1b2a;
            stroke-width: 3;
            transform: scale(0);
            transition: transform 0.2s;
        }

        .checkbox-label input:checked + .checkbox-custom {
            background-color: #00d65b;
            border-color: #00d65b;
        }
        .checkbox-label input:checked + .checkbox-custom svg {
            transform: scale(1);
        }
        
        .submit-btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 8px;
            background-color: #00d65b;
            color: #0d1b2a;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 25px;
        }

        .submit-btn:hover {
            background-color: #00b84e;
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 214, 91, 0.25);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

      
        @media (max-width: 992px) {
            .contact-body {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            
            .logo-image { width: 150px; }
            .contact-body { padding: 30px 25px; }
            .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
            .form-row .form-group { margin-bottom: 25px; }
        }

        @media (max-width: 576px) {
            main { padding-top: 80px; padding-left: 10px; padding-right: 10px;}
            .contact-body { padding: 25px 15px; }
        }