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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #2E2D29;
            background-color: #EFEAE1;
        }

        .header {
            z-index: -999;
            background: linear-gradient(135deg, #3D5073 0%, #3176BA 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .main-content {
            padding: 60px 0;
        }

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

        .content-box {
            background: #FFFFFF;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(46, 45, 41, 0.15);
            overflow: hidden;
            margin-bottom: 40px;
            border: 1px solid rgba(49, 118, 186, 0.1);
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .get-in-touch {
            padding: 50px 40px;
            border-left: 1px solid rgba(49, 118, 186, 0.2);
            background: linear-gradient(135deg, #FFFFFF 0%, #EFEAE1 100%);
        }

        .get-in-touch h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #2E2D29;
            margin-bottom: 20px;
        }

        .get-in-touch p {
            color: #3D5073;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 25px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .contact-item .icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(255, 255, 255);
            font-size: 1.5rem;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(49, 118, 186, 0.25);
        }

        .contact-item .info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #2E2D29;
            margin-bottom: 8px;
        }

        .contact-item .info p {
            color: #3D5073;
            font-size: 0.9rem;
            margin: 0;
        }

        .contact-social-media {
            margin-top: 30px;
            text-align: center;
        }

        .contact-social-media h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #2E2D29;
            margin-bottom: 15px;
        }

        .contact-social-icons {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .contact-social-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #3176BA 0%, #3D5073 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(49, 118, 186, 0.25);
            cursor: pointer;
        }

        .contact-social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(49, 118, 186, 0.4);
        }

        .send-message {
            padding: 50px 40px;
            border-right: 1px solid rgba(49, 118, 186, 0.2);
            background: #FFFFFF;
        }

        .send-message h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #2E2D29;
            margin-bottom: 20px;
        }

        .send-message p {
            color: #3D5073;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 500;
            color: #2E2D29;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            padding: 14px 16px;
            border: 2px solid rgba(49, 118, 186, 0.2);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #EFEAE1;
            color: #2E2D29;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3176BA;
            background: #FFFFFF;
            box-shadow: 0 0 0 3px rgba(49, 118, 186, 0.1);
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #3176BA 0%, #3D5073 100%);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            box-shadow: 0 6px 20px rgba(49, 118, 186, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(49, 118, 186, 0.4);
        }

        .map-section {
            background: #FFFFFF;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(46, 45, 41, 0.15);
            overflow: hidden;
            border: 1px solid rgba(49, 118, 186, 0.1);
        }

        .map-container {
            transition: 0.3s;
            height: 400px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1.1rem;
        }
        .map-container:hover{
            transform: scale(1.1);
        }

        .map-container img{
            object-fit: fill;
            width: 100%;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
            }

            .get-in-touch {
                border-left: none;
                border-top: 1px solid rgba(49, 118, 186, 0.2);
            }

            .send-message {
                border-right: none;
                border-bottom: 1px solid rgba(49, 118, 186, 0.2);
            }

            .get-in-touch,
            .send-message {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 60px 0;
            }

            .header h1 {
                font-size: 2rem;
            }

            .main-content {
                padding: 40px 0;
            }

            .get-in-touch,
            .send-message {
                padding: 25px 15px;
            }
        }