/* Genel Ayarlar */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; top: 0;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

header nav ul li a {
    color: #fff;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Hero */
.hero {
    background-color: #007bff;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

/* Feature Boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 20px;
    margin: 20px 0;
}

.feature-boxes .box {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-boxes .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-boxes .box h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.feature-boxes .box p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.feature-boxes .box .btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.feature-boxes .box .btn:hover {
    background-color: #0056b3;
}
.training-image {
    width: 100%;
    max-width: 500px; /* Maksimum genişlik */
    height: auto;      /* Oranlı boyutlandırma */
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.content-section {
    padding: 40px 20px;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
}

.content-card {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.content-card:last-child {
    border-bottom: none;
}

.content-card h3 {
    margin: 0px 0px 5px 0px;
    font-size: 1.4em;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-media {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-icon {
    color: #fff;
    font-size: 1.8em;
    transition: color 0.3s;
}

footer .social-icon:hover {
    color: #007bff;
}
