* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #1a1f24;
    color: #d8e0e5;
    line-height: 1.7;
    min-width: 20rem;
}

header {
    background: #222a31;
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid #2f3942;
}

a {
    text-decoration: none;
    color: #018abc;
    transition: 0.2s ease;
}

a:hover {
    color: #016b94;
}

.container {
    width: min(1600px, 94%);
    margin: auto;
}

.logo-placeholder {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 25px;
    border-radius: 20%;
    background: linear-gradient(135deg, #018abc, #81d4ed);
    padding: 1rem;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.subtitle {
    color: #c5ddeb;
    letter-spacing: 3px;
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h1 {
    color: #b12815;
    font-size: 3rem;
    margin-bottom: 25px;
}

.intro {
    max-width: 850px;
    margin: auto;
    font-size: 1.1rem;
    color: #b9c5cc;
}

main {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #e7604d;
    margin-bottom: 10px;
}

.section-title p {
    color: #9fb0ba;
    max-width: 750px;
    margin: auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.card {
    background: #273038;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}


.card-image {
    height: 400px;
    background: #39454f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aebcc5;
    font-size: 1rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #018abc;
}

.card-content p {
    margin-bottom: 18px;
    color: #c2ccd2;
    font-size: 0.98rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: #183543;
    color: #81d4ed;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
}

.links {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #018abc;
    color: white;
    font-weight: bold;
}

.button:hover {
    background: #016b94;
    color: white;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #018abc;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    transition: 0.2s ease;
}

.social-button:hover {
    background: #016b94;
    color: white;
}

.social-button svg {
    width: 16px;
    height: 16px;
    fill: white;
}

footer {
    background: #364046;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

footer {
    background: #11161a;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

@media(max-width:768px) {

    h1 {
        font-size: 2.2rem;
    }

    .intro {
        font-size: 1rem;
    }

    .card-content {
        padding: 24px;
    }

}