/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.cookie-text p {
    font-size: 14px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-categories {
    margin: 20px 0;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.cookie-category p {
    font-size: 14px;
    color: #6b7280;
    margin-left: 28px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: #1f2937;
    text-decoration: none;
}

.logo-text {
    color: #2563eb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 150px 0 100px;
    margin-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image svg {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1f2937;
}

.about-text p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image svg {
    width: 100%;
    height: auto;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-content p {
    font-style: italic;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: #6b7280;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background-color: #1f2937;
    color: white;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.newsletter-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #2563eb;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.checkbox-group a {
    color: #3b82f6;
}

.newsletter-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    font-size: 18px;
    padding: 14px 24px;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background-color: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-icon {
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.page-header-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

.breadcrumb {
    color: #6b7280;
    font-size: 14px;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Tutorial Navigation */
.tutorial-nav {
    padding: 60px 0;
    background-color: white;
}

.tutorial-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tutorial-nav-item {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tutorial-nav-item:hover {
    background-color: white;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tutorial-nav-icon {
    margin-bottom: 20px;
}

.tutorial-nav-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.tutorial-nav-item p {
    color: #6b7280;
    font-size: 14px;
}

/* Tutorial Sections */
.tutorial-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.tutorial-section:nth-child(even) {
    background-color: white;
}

.tutorial-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.tutorial-header-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.tutorial-header-text p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.tutorial-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tutorial-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    background-color: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #1f2937;
    line-height: 1.5;
}

.step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.tutorial-tips {
    position: sticky;
    top: 100px;
}

.tips-box {
    background-color: #fffbeb;
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 24px;
}

.tips-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #92400e;
}

.tips-box ul {
    list-style: none;
    padding: 0;
}

.tips-box li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #92400e;
    line-height: 1.5;
}

.tips-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: 600;
}

/* Call to Action Section */
.cta-section {
    background-color: #2563eb;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background-color: white;
    color: #2563eb;
}

/* About Page Styles */
.about-mission {
    padding: 80px 0;
    background-color: white;
}

.mission-icon {
    margin-bottom: 24px;
    text-align: center;
}

.company-values {
    padding: 80px 0;
    background-color: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

.company-story {
    padding: 80px 0;
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1f2937;
}

.story-text p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.team-principles {
    padding: 80px 0;
    background-color: #f9fafb;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.principle-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.principle-number {
    background-color: #2563eb;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;
}

.principle-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.principle-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-info h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.contact-form-info p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-benefits .benefit-item span {
    font-size: 16px;
    color: #1f2937;
}

.contact-form-wrapper {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 12px;
}

.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    transition: border-color 0.3s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-details {
    padding: 80px 0;
    background-color: #f9fafb;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-detail-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-detail-icon {
    margin-bottom: 20px;
}

.contact-detail-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.contact-detail-card p {
    color: #1f2937;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-detail-card small {
    color: #6b7280;
    font-size: 14px;
}

.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: 20px;
    color: #6b7280;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.map-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.map-info p {
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
    margin-top: 70px;
}

.thank-you-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.thank-you-message {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-icon {
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.info-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.while-you-wait {
    padding: 80px 0;
    background-color: white;
}

.popular-tutorials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tutorial-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tutorial-card:hover {
    background-color: white;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tutorial-card-icon {
    margin-bottom: 20px;
}

.tutorial-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.tutorial-card p {
    color: #6b7280;
    font-size: 14px;
}

.newsletter-signup {
    padding: 80px 0;
    background-color: #f9fafb;
    text-align: center;
}

.newsletter-signup-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.newsletter-signup-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-signup-icon {
    margin-bottom: 20px;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background-color: white;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #1f2937;
}

.legal-section p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-section li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

.legal-update {
    text-align: center;
    font-style: italic;
    color: #6b7280;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.cookie-duration-table {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.cookie-management {
    background-color: #eff6ff;
    padding: 24px;
    border-radius: 8px;
    margin: 20px 0;
}

.cookie-management .btn {
    margin-top: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
    
    .page-header-content h1 {
        font-size: 32px;
    }
    
    .tutorial-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .tutorial-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tutorial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tutorial-tips {
        position: static;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}