* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c69c5d;
    --dark: #1f1f1f;
    --light: #ffffff;
}

body {
    font-family: 'Cairo', sans-serif;

    background-image: url('bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    min-height: 100vh;
    color: var(--dark);

    position: relative;
}

.overlay {
    position: fixed;
    inset: 0;

    background: rgba(255, 255, 255, .45);

    backdrop-filter: blur(1px);

    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;

    max-width: 520px;

    margin: auto;

    padding: 30px 20px 50px;
}

.hero {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 320px;
    max-width: 90%;
}

.company-name {
    font-size: 32px;
    font-weight: 800;

    color: var(--dark);

    margin-bottom: 10px;
}

.title {
    color: var(--gold);

    font-size: 28px;

    font-weight: 800;

    margin-bottom: 10px;
}

.subtitle {
    color: #555;

    font-size: 17px;

    line-height: 1.8;
}

.about-card {

    background: rgba(250, 247, 242, .92);

    border: 1px solid rgba(198, 156, 93, .15);

    border-radius: 30px;

    padding: 30px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    margin-bottom: 30px;
}

.about-text {

    line-height: 2.3;

    color: #55514b;

    font-size: 16px;
}


.feature-card i {

    font-size: 40px;

    color: #c69c5d;

    margin-bottom: 15px;
}

.feature-card h3 {

    color: var(--gold);

    font-size: 24px;

    font-weight: 800;

    margin-bottom: 15px;
}

.feature-card p {

    color: #55514b;

    line-height: 2.2;

    font-size: 16px;
}

.feature-card {

    background: rgba(250, 247, 242, .92);

    border: 1px solid rgba(198, 156, 93, .15);

    border-radius: 30px;

    padding: 30px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    margin-bottom: 30px;

    text-align: center;
}

.divider {

    width: 70px;

    height: 3px;

    background: var(--gold);

    margin: 20px auto;
}

.about-card h3 {

    text-align: center;

    color: var(--gold);

    margin-bottom: 20px;

    font-size: 24px;
}

.services-list {

    list-style: none;
}

.services-list li {

    padding: 10px 0;

    border-bottom: 1px solid #eee;

    font-size: 15px;

    color: #444;
}

.services-list li:last-child {
    border-bottom: none;
}

.cards-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 30px;
}

.card {

    text-decoration: none;

    background: rgba(250, 247, 242, .92);

    border: 1px solid rgba(198, 156, 93, .15);

    border-radius: 30px;

    padding: 25px 15px;

    text-align: center;

    color: var(--dark);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .3s;
}

.card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .12);
}

.card i {

    font-size: 34px;

    color: var(--gold);

    margin-bottom: 15px;
}

.card h4 {

    font-size: 18px;

    margin-bottom: 8px;
}

.card span {

    font-size: 13px;

    color: #777;

    line-height: 1.6;
}

.footer {

    text-align: center;

    background: rgba(250, 247, 242, .92);

    border: 1px solid rgba(198, 156, 93, .15);

    border-radius: 30px;

    padding: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.footer i {

    color: var(--gold);

    font-size: 24px;

    margin-bottom: 10px;
}

.footer p {

    color: #555;

    line-height: 2;
}

@media(max-width:480px) {

    .company-name {
        font-size: 28px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 15px;
    }

    .card {
        padding: 22px 12px;
    }

    .card i {
        font-size: 30px;
    }

    .card h4 {
        font-size: 16px;
    }
}