.cont-section {
    padding: 120px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cont-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

/* Left Side - Contact Form */
.cont-left {
    background: white;
    padding: 0;
}

.cont-header {
    margin-bottom: 2rem;
}

.cont-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.cont-info {
    margin-bottom: 2.5rem;
}

.cont-info-item {
    margin-bottom: 1.5rem;
}

.cont-info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.cont-info-value {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.cont-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cont-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.cont-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.cont-input {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.85rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cont-input:focus {
    outline: none;
    border-color: #009653;
    background: white;
    box-shadow: 0 0 0 2px rgba(0, 150, 83, 0.1);
}

.cont-textarea {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.85rem;
    background: #f8f9fa;
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cont-textarea:focus {
    outline: none;
    border-color: #009653;
    background: white;
    box-shadow: 0 0 0 2px rgba(0, 150, 83, 0.1);
}

/* Right Side - Image/Visual */
.cont-right {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cont-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.cont-visual-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.cont-visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cont-visual-text {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
    max-width: 300px;
}


/* Responsive Design */
@media (max-width: 968px) {
    .cont-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cont-title {
        font-size: 2.25rem;
    }

    .cont-right {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .cont-section {
        padding: 2rem 1rem;
    }

    .cont-title {
        font-size: 2rem;
    }

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

    .cont-right {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .cont-title {
        font-size: 1.75rem;
    }

    .cont-section {
        padding: 1.5rem 1rem;
    }
}

/* Animation */
.cont-left,
.cont-right {
    animation: fadeInUp 0.6s ease-out;
}

.cont-right {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

