.containern {
    display: flex;
    align-items: center;
    padding: 40px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.contactn-info {
    flex: 1;
    min-width: 280px;
}

.contactn-info h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contactn-info .line {
    width: 50px;
    height: 3px;
    background: #c900d7;
    margin-bottom: 20px;
}

.contactn-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.contactn-item i {
    margin-right: 10px;
    color: #ff00d4;
    font-size: 20px;
}

.description {
    margin-top: 40px;
    font-size: 14px;
    color: #ccc;
    max-width: 400px;
}

.imagen-section {
    flex: 1;
    text-align: center;
    min-width: 280px;
}

.imagen-section img {
    width: 400px;
    max-width: 100%;
}

.circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(128, 0, 128, 0.5);
}

.complaints-card {
    background-color: #222;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 30px auto;
    color: white;
}

.complaints-card h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #f0f0f0;
}

.complaints-card form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 250px;
}

.form-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    min-width: 250px;
}

.complaints-card input,
.complaints-card textarea {
    background-color: #2c2c2c;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.complaints-card input:focus,
.complaints-card textarea:focus {
    border-color: #c900d7;
    outline: none;
}

.complaints-card input::placeholder,
.complaints-card textarea::placeholder {
    color: #aaa;
}

.complaints-card textarea {
    height: 100%;
    min-height: 200px;
    resize: vertical;
}

.complaints-card button[type="submit"] {
    margin-top: 20px;
    background: linear-gradient(to right, #c900d7, #91019b);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    width: 100%;
}

.complaints-card button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(241, 1, 229, 0.753);
}

.ai-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff00e6, #2158ff);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 1000;
}

.ai-button:hover {
    transform: scale(1.1);
}

.ai-button img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


/* Responsive Design */

@media (max-width: 768px) {
    .containern {
        flex-direction: column;
        padding: 20px 10px;
        text-align: center;
    }
    .contactn-info h1 {
        font-size: 28px;
    }
    .contactn-item {
        justify-content: center;
        font-size: 16px;
    }
    .description {
        font-size: 13px;
        margin: 20px auto 0;
    }
    .imagen-section img {
        max-width: 300px;
    }
    .complaints-card {
        max-width: 100%;
        padding: 20px 15px;
    }
    .complaints-card h2 {
        font-size: 1.4rem;
    }
    .complaints-card form {
        flex-direction: column;
        gap: 15px;
    }
    .form-left,
    .form-right {
        flex: 1 1 100%;
    }
    .complaints-card input,
    .complaints-card textarea {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    .complaints-card button[type="submit"] {
        font-size: 0.95rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .complaints-card h2 {
        font-size: 1.2rem;
    }
    .complaints-card input,
    .complaints-card textarea {
        font-size: 0.9rem;
        padding: 10px 14px;
    }
    .complaints-card button[type="submit"] {
        font-size: 0.9rem;
        padding: 10px;
    }
    .contactn-info h1 {
        font-size: 22px;
    }
}