:root {
    --gold: #ffffff;
    --gold-light: #ffffff;
    --black:  rgb(50, 137, 199);
    --dark-gray: rgb(227, 227, 227);
    --title:     fill: rgb(77, 165, 227);
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background: #0f2553;
    min-height: 100vh;
}
.container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    background: var(--dark-gray);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.cover-image {
    width: 100%;
    height: 200px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-container {
    position: relative;
    margin-top: -20px;
    text-align: center;
    padding: 0 20px;
}
.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #2fa4bc;
    padding: 5px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--dark-gray);
}
.logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.content {
    margin-top: -12px;
    padding: 20px;
    text-align: center;
}
h1 {
    font-family: "Assistant", Sans-serif;
    font-weight: 600;
    color: #0f2553;
    font-size: 30px;
    margin: 10px 0 5px;
}
.subtitle {
    color: #0f2553;
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2fa4bc;
    font-size: 18px;
    font-family: "Assistant", Sans-serif;
    font-weight: 500;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #d9caca;
    border-radius: 50%;
    display: flex;
    background: #2fa4bc;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s;
}
.icon-circle:hover {
    background: #0f2553;
}


.icon-circle svg {
    width: 25px;
    height: 25px;
    stroke: #ffffff;
    stroke-width: 2;
    transition: all 0.3s;
}
.icon-circle:hover svg {
    stroke: #ffffff;
}

#icons {
    width: 25px;
    height: 25px;
    stroke-width: 2;
    font-size: 24px;
    transition: all 0.3s;
    color: #ffffff;
}

.icon-circle:hover i {
    color: #ffffff;
}
.save-contact {
    margin: 20px 0;
    padding: 12px 24px;
    border: 2px solid #2fa4bc;
    fill: #2fa4bc;
    color: #2fa4bc;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.save-contact:hover {
    background: #0f2553;
    fill: #ffffff;
    color: #ffffff;
}

.about-section {
    background: #0f2553;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: right;
    border: 1px solid var(--gold);
}
.about-title {
    color: #31a4bc;
    font-size: 27px;
    font-family: "Assistant", Sans-serif;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
}

.about-text {
    padding: 4px;
    text-align: start;
    color: #FFFFFF;
    font-family: "Assistant", Sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.footer {
    text-align: center;
    padding: 20px;
    color: #0f2553;
    font-size: 15px;
    font-weight: 500;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

#link {
    text-align: center;
    color: #0f2553;
    font-size: 15px;
    font-weight: 500;
}
@media (min-width: 431px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    .container {
        border-radius: 15px;
        overflow: hidden;
    }
}
