/* საერთო სტილები */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* სათაურები */
h1 {
    font-size: 2.5em;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-top: 30px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

/* აღწერა და პირადი ინფორმაცია */
.intro {
    text-align: center;
    margin-top: 10px;
}

.intro p {
    font-size: 1.2em;
    color: #7f8c8d;
}

.profile-info {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 1.1em;
}

.profile-info div {
    width: 48%;
}

.profile-info p {
    margin: 5px 0;
}

.profile-info a {
    color: #3498db;
    text-decoration: none;
}

.profile-info a:hover {
    text-decoration: underline;
}

/* სექციები */
.section-title {
    font-size: 1.3em;
    color: #3498db;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

/* სია */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    background-color: #ecf0f1;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

li strong {
    color: #2c3e50;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #7f8c8d;
}

.footer a {
    color: #3498db;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .profile-info {
        flex-direction: column;
    }

    .profile-info div {
        width: 100%;
        margin-bottom: 20px;
    }
}
