
    .aida-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: "Inter", Arial, sans-serif;
    }

    .aida-title {
        text-align: center;
        font-size: 2.6rem;
        color: #5D4037;
        margin-bottom: 10px;
    }

    .aida-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #444;
        margin-bottom: 40px;
    }

    .aida-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .aida-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .aida-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .aida-content {
        padding: 25px;
    }

    .aida-content h2 {
        margin-top: 0;
        color: #5D4037;
        font-size:0.95rem;
    }

    .aida-info-box {
        background: #F2E9E4;
        padding: 12px 15px;
        border-radius: 8px;
        margin: 15px 0;
        font-size: 1rem;
    }

    .aida-btn-row {
        margin-top: 20px;
        display: flex;
        gap: 12px;
    }

    .aida-btn {
        background: #5D4037;
        color: white;
        padding: 10px 18px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 0.95rem;
        transition: 0.2s;
    }

    .aida-btn:hover {
        background: #4a332d;
    }

    .aida-contact {
        margin-top: 60px;
        background: #D6C8AE;
        color: black;
        padding: 40px;
        border-radius: 14px;
        text-align: center;
    }

    .aida-contact-btn {
        display: inline-block;
        margin-top: 20px;
        background: white;
        color: #4CAF50;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
    }

    .aida-contact-btn:hover {
        background: #f2f2f2;
    }
