/* Material Design Style - Gift Parvaz */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1976D2;
    --secondary-color: #424242;
    --accent-color: #2196F3;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.15);
}

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1001;
}

.info-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-banner-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.info-banner strong {
    font-weight: 600;
}

/* Header Styles */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: 500;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s;
    padding: 8px 12px;
}

nav a:hover {
    color: var(--primary-color);
}

nav a.active {
    color: var(--primary-color);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 400px);
}

/* Hero Section */
.hero {
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: center;
}

.hero-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.hero-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #1565C0;
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #616161;
}

/* Value Proposition Section */
.value-proposition {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 40px;
    border-radius: 4px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
}

.value-proposition h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-proposition p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
    text-align: center;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: block;
}

.card h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
}

/* Content Sections */
.content-section {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.section-header-with-image {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.section-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header-with-image + p {
    margin-top: 0;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.content-section ul, .content-section ol {
    margin-left: 30px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 10px;
}

/* Forms */
.contact-disclaimer {
    background-color: #FFF3E0;
    border-left: 4px solid #FF9800;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.contact-disclaimer p {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-disclaimer p:last-child {
    margin-bottom: 0;
}

.contact-disclaimer strong {
    color: #E65100;
}

.form-privacy-notice {
    margin-top: 20px;
    padding: 15px;
    background-color: #F5F5F5;
    border-radius: 4px;
}

.form-privacy-notice p {
    margin: 0;
    color: var(--text-light);
}

.form-privacy-notice a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Styles */
.faq-item {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-banner {
        font-size: 12px;
        padding: 10px 15px;
    }

    .info-banner-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 15px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card-icon {
        width: 100px;
        height: 100px;
    }

    .section-header-with-image {
        flex-direction: column;
        text-align: center;
    }

    .section-icon {
        width: 60px;
        height: 60px;
    }

    .content-section {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

