/* About Page Styles */
:root {
    --primary-color: #0066cc;
    --highlight-color: #f80000;
    --sidebar-bg: #f8f9fa;
    --sidebar-border: #e0e0e0;
    --content-bg: #fff;
    --text-color: #222;
    --heading-color: #111;
    --active-bg: #e6f0fa;
    --active-border: #f80000;
    --font-family: 'Segoe UI', 'Arial', sans-serif;
    --white: #fff;
    --secondary-color: #ff0000;
}

body {
    font-family: var(--font-family);
    background: var(--content-bg);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    padding-top: 70px; /* Navbar yüksekliği kadar üstten boşluk bırak */
}


/* Header ve Navigasyon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff; /* Opak beyaz arka plan */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: var(--primary-color);
}
.breadcrumb {
    background: var(--sidebar-bg);
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb-list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: #aaa;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.main-content.oracle-cms-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 2rem 2rem;
    background: var(--content-bg);
    min-height: 80vh;
    box-sizing: border-box;
}

.oracle-content {
    flex: 1;
    padding: 0 0 0 3rem;
    background: var(--content-bg);
}

.about-section {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.about-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 400;
}


@media (max-width: 1100px) {
    .main-content.oracle-cms-layout {
        flex-direction: column;
        padding: 2rem 0.5rem;
    }
    .oracle-content {
        padding: 2rem 0.5rem 0 0.5rem;
    }
}
@media (max-width: 700px) {
    .nav-main {
        flex-direction: column;
        height: auto;
        padding: 0.5rem 0.5rem;
    }
    .main-content.oracle-cms-layout {
        padding: 1rem 0.2rem;
    }
    .oracle-content h1 {
        font-size: 1.5rem;
    }
    .oracle-content h2 {
        font-size: 1.1rem;
    }
    .oracle-sidebar {
        padding: 0.5rem 0.2rem;
    }
}

/* Contact Form Styles */
.contact-section {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.contact-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #005bb5;
}

/* Contact Info Styles */
.contact-info {
    background: #f0f4f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
}

/* Contact Info Cards Styles */
.contact-info-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.contact-card {
    background: #f7f9fb;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 280px;
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1.5px solid #e3eaf3;
}
.contact-card:hover {
    box-shadow: 0 8px 24px rgba(0,102,204,0.10);
    transform: translateY(-4px) scale(1.03);
    border-color: var(--primary-color);
}
.contact-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-word;
}
.contact-card i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}
@media (max-width: 900px) {
    .contact-info-cards {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .contact-card {
        max-width: 100%;
        width: 100%;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        padding: 1rem 0;
        z-index: 1001;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--primary-color);
        cursor: pointer;
        margin-left: 1rem;
    }
}

.hamburger {
    display: none;
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
} 