@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffecd2, #fcb69f); /* playful gradient */
    color: #333;
}

.container {
    max-width: 900px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    text-align: center;
}

h1 {
    font-size: 2.3rem;
    color: #d97706;
    margin-bottom: 20px;
}

.img {
    width: 150px;
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.section-title {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #16a34a;
    border-bottom: 3px solid #16a34a;
    display: inline-block;
    padding-bottom: 5px;
}

.description {
    text-align: left;
    line-height: 1.6;
    font-size: 1rem;
    color: #444;
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

.keyfeatures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    text-align: left;
}

.keyfeatures li {
    background: #fff7ed;
    border-left: 5px solid #d97706;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.2s, background 0.3s;
}

.keyfeatures li:hover {
    transform: translateY(-4px);
    background: #fde68a;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #d97706;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #92400e;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(217,119,6,0.3);
}
.technologies {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.logo {
    height: 90px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.1);
}