/* İmba Meet - Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

/* Header Styles */
.header {
    background: #2B5235;
    color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.logo {
    height: 50px;
    width: auto;
}

/* Hero Section (Ana Sayfa) */
.hero {
    background: #2B5235;
    color: white;
    padding: 20px 20px;
    text-align: center;
}

.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.3rem;
    color: white;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: white;
    color: #2B5235;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Cards */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.intro-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-card h2 {
    color: #2B5235;
    margin-bottom: 15px;
}

.intro-card p {
    color: #4b5563;
    margin-bottom: 10px;
}

.info-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.info-section h2 {
    color: #2B5235;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-section p {
    color: #4b5563;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.info-section ul {
    color: #4b5563;
    margin: 15px 0;
    padding-left: 30px;
}

.info-section li {
    margin: 10px 0;
}

.meta-info {
    background: #f0f9ff;
    border-left: 4px solid #2B5235;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.meta-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #374151;
}

/* Typography */
h2 {
    color: #2B5235;
    font-size: 1.75rem;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

h3 {
    color: #0A3F1B;
    font-size: 1.25rem;
    margin: 30px 0 15px 0;
}

h4 {
    color: #4A8D61;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
}

p {
    margin: 15px 0;
    color: #4b5563;
}

ul, ol {
    margin: 15px 0;
    padding-left: 30px;
    color: #4b5563;
}

li {
    margin: 8px 0;
}

code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #d97706;
}

/* Links */
a {
    color: #2B5235;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

a:hover {
    border-bottom-color: #2B5235;
}

/* Section Title */
.section-title {
    text-align: center;
    color: #2B5235;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2B5235;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6b7280;
    font-size: 1rem;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.link-card {
    background: #f0f9ff;
    border-left: 4px solid #2B5235;
    padding: 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.link-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.link-card h3 {
    color: #2B5235;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.link-card p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #2B5235;
    margin-bottom: 10px;
}

.contact-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

.contact-card a {
    color: #2B5235;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.contact-card a:hover {
    border-bottom-color: #2B5235;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.form-card h2 {
    color: #2B5235;
    margin-bottom: 20px;
}

.iframe-container {
    position: relative;
    width: 100%;
    min-height: 1200px;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.iframe-container iframe {
    width: 100%;
    min-height: 1200px;
    border: none;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.faq-section h2 {
    color: #2B5235;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    color: #0A3F1B;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-answer {
    color: #4b5563;
}

/* Info Boxes */
.highlight-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.info-box {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.warning-box {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.contact-box {
    background: #f0f9ff;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-box h3 {
    margin-top: 0;
}

/* Footer */
.footer {
    background: #2B5235;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
}

.footer p {
    color: white;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.footer a:hover {
    border-bottom-color: white;
}

.footer-links {
    margin: 20px 0;
    font-size: 1rem;
}

.footer-links a {
    margin: 0 15px;
    color: white;
}

.footer-links a:hover {
    opacity: 0.9;
}

.footer-contact {
    font-size: 0.75rem;
    color: white;
    margin-top: var(--space-xs);
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    opacity: 0.9;
    text-decoration: underline;
}

.footer-separator {
    color: white;
    margin: 0 var(--space-xs);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .content-card {
        padding: 25px 20px;
    }

    .intro-card, .form-card, .faq-section {
        padding: 20px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

