/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Antarā color system */
:root {
    --primary: #8795e3;
    --secondary: #009688;
    --accent: #ff7043;
    --bg-light: #f5f7fb;
    --bg-gradient: linear-gradient(135deg, #c3dff3	);
    --text-dark: #222;
    --text-muted: #555;
}

/* Base */
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.75;
}

/* Hero */
.foundation-hero {
    min-height: 100vh;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* Card */
.foundation-card {
    background: #ffffff;
    max-width: 900px;
    padding: 55px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* Header layout */
.foundation-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

/* Logo */
.foundation-logo img {
    height: 100px;
}

/* Title */
.foundation-title h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--secondary);
    font-weight: 500;
    margin-top: 6px;
}

/* Content */
.foundation-content {
    text-align: justify;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.foundation-content p {
    margin-bottom: 22px;
}

/* Highlight */
.foundation-content .highlight {
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
}

/* Mobile */
@media (max-width: 768px) {
    .foundation-card {
        padding: 35px 25px;
    }

    .foundation-header {
        flex-direction: column;
        text-align: center;
    }

    .foundation-logo img {
        height: 85px;
    }

    .foundation-title h1 {
        font-size: 2.1rem;
    }

    .foundation-content {
        text-align: left;
        font-size: 1rem;
    }
}
