:root {
    --primary-color: #008080; /* Teal color from image */
    --dark-blue: #0a192f;
    --light-bg: #f4f7f6;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: url('pic/p27.jpg') no-repeat center center/cover;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 10px; }

/* Intro */
.intro {
    padding: 40px 0;
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    border-bottom: 2px solid var(--light-bg);
}

/* Portfolio Table */
.section-title {
    text-align: center;
    margin: 40px 0 10px;
    font-size: 2rem;
}

.subtitle {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
}

table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
}

table td {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

table tr:nth-child(even) { background-color: #f9f9f9; }

/* Advantage Section */
.advantage {
    background-color: var(--light-bg);
    padding: 50px 20px;
    border-radius: 10px;
}

.advantage-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.advantage-image { flex: 1; }
.advantage-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-text { flex: 1.5; }
.advantage-text h2 { color: var(--dark-blue); margin-bottom: 15px; }
.why-us { font-weight: bold; margin-bottom: 20px; color: var(--primary-color); }

.advantage-text h3 { margin: 20px 0 10px; font-size: 1.1rem; }
.advantage-text ul { list-style: none; }
.advantage-text ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.advantage-text ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .advantage-content { flex-direction: column; }
    .hero h1 { font-size: 1.8rem; }
}

/* Başlığı mərkəzləşdirmək və böyütmək üçün */
.advantage-text h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 2.5rem; /* Ölçünü böyüdür */
    text-align: center; /* Yazını mərkəzə çəkir */
    width: 100%; /* Sahəni tam əhatə etməsini təmin edir */
}

/* Əgər bütün "advantage-text" bölməsini mərkəzləşdirmək istəyirsinizsə: */
.advantage-text {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center; /* Alt elementləri (ul, h3) mərkəzləyir */
    text-align: center;
}

.advantage-text ul {
    text-align: left; /* Siyahıların oxunması üçün mətni sola hizalayır */
    display: inline-block; /* Siyahını mərkəzdə saxlamaq üçün */
}