/* Base styles og Reset */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #81C784;
    --secondary-color: #FFC107;
    --secondary-dark: #FFA000;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #F9F9F9;
    --bg-dark: #2A2A2A;
    --white: #FFFFFF;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea {
    font-family: var(--font-primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--border-radius);
    width: 100%;
    margin-top: 15px;
    display: block;
    text-align: center;
}

.btn-service:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-service-featured {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--border-radius);
    width: 100%;
    margin-top: 15px;
    display: block;
    text-align: center;
}

.btn-service-featured:hover {
    background-color: var(--secondary-dark);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header.light h2 {
    color: var(--white);
}

.underline {
    height: 4px;
    width: 70px;
    background-color: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.underline::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 35px;
    background-color: var(--secondary-color);
    left: 70px;
    top: 0;
}

.underline.light {
    background-color: var(--white);
}

.underline.light::after {
    background-color: var(--secondary-color);
}

.underline.left-align {
    margin: 0;
}

.section-header.left-align {
    text-align: left;
}

section {
    padding: 100px 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
}

.navigation {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 70%;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: var(--text-dark);
    margin-left: 15px;
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: url('images/hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s;
}

.hero h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    animation: fadeInDown 1.2s;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.6s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.3));
    z-index: 1;
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.team-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    transition: var(--transition);
    padding: 20px;
    border-radius: var(--border-radius);
}

.team-member:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-lighter);
    font-style: italic;
}

/* Services Section */
.services-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/service.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-icon i {
    font-size: 30px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    text-align: left;
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-features li.not-included::before {
    content: '✕';
    color: var(--text-lighter);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 2;
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-card.featured .service-icon {
    background-color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 25px;
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-content span {
    color: var(--text-lighter);
    font-size: 14px;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: var(--primary-light);
    color: var(--white);
    transition: var(--transition);
}

.stat-item:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    font-weight: 500;
}

/* Articles Section */
.articles-section {
    background-color: var(--bg-light);
}

.articles-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.article-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-lighter);
    font-size: 14px;
    margin-bottom: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 5px;
}

.external-resources {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 50px;
}

.external-resources h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 22px;
}

.external-resources p {
    color: var(--white);
    margin-bottom: 15px;
}

.external-resources ul {
    list-style-type: disc;
    padding-left: 20px;
}

.external-resources li {
    margin-bottom: 10px;
}

.external-resources a {
    color: var(--white);
    text-decoration: underline;
}

.external-resources a:hover {
    color: var(--secondary-color);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pricing.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: var(--primary-light);
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 18px;
    color: var(--white);
    margin-right: 5px;
}

.amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
}

.period {
    font-size: 14px;
    color: var(--white);
    margin-left: 5px;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 10px;
    color: var(--primary-color);
}

.pricing-features .not-included {
    color: var(--text-lighter);
}

.pricing-features .not-included i {
    color: var(--text-lighter);
}

.btn-pricing {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    display: block;
    text-align: center;
    transition: var(--transition);
}

.btn-pricing:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.pricing-card.featured-price {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid var(--secondary-color);
}

.pricing-card.featured-price:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 3;
}

.pricing-card.featured-price .pricing-header {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.pricing-card.featured-price .pricing-header h3,
.pricing-card.featured-price .price span {
    color: var(--text-dark);
}

.btn-pricing-featured {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    display: block;
    text-align: center;
    transition: var(--transition);
}

.btn-pricing-featured:hover {
    background-color: var(--secondary-dark);
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 14px;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    padding: 0 0 20px;
    color: var(--text-light);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Blog Section */
.blog-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/blog.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.blog-post {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-lighter);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.blog-read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.blog-read-more:hover i {
    margin-left: 10px;
}

.blog-post.featured-post {
    grid-row: span 2;
    grid-column: span 2;
}

.blog-post.featured-post .blog-image {
    height: 300px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.pagination-arrow,
.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.pagination-number.active,
.pagination-arrow:hover,
.pagination-number:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

/* Categories Section */
.categories-section {
    background-color: var(--bg-light);
}

.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--white);
}

.category-icon i {
    font-size: 30px;
    color: var(--white);
    transition: var(--transition);
}

.category-card:hover .category-icon i {
    color: var(--primary-color);
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: var(--transition);
}

.category-card p {
    color: var(--text-light);
    transition: var(--transition);
}

.category-card:hover h3,
.category-card:hover p {
    color: var(--white);
}

/* Comments Section */
.comments-section {
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.comments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/comments.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.comments-wrapper {
    position: relative;
    z-index: 1;
}

.comment {
    display: flex;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.comment-avatar {
    margin-right: 20px;
}

.comment-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    font-size: 18px;
    color: var(--text-dark);
}

.comment-date {
    font-size: 14px;
    color: var(--text-lighter);
}

.comment-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.comment-actions {
    display: flex;
    gap: 20px;
}

.comment-actions a {
    display: flex;
    align-items: center;
    color: var(--text-lighter);
    font-size: 14px;
    transition: var(--transition);
}

.comment-actions a i {
    margin-right: 5px;
}

.comment-actions a:hover {
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    padding-bottom: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}

.checkbox-container label {
    margin-bottom: 0;
    font-weight: 400;
}

.btn-form {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-form:hover {
    background-color: var(--primary-dark);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    height: 450px;
    width: 100%;
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input-group {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.newsletter-input-group button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-input-group button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 970px;
    }
    
    .hero h1 {
        font-size: 50px;
    }
    
    .hero h2 {
        font-size: 30px;
    }
    
    .team-members,
    .services-wrapper,
    .testimonials-wrapper,
    .articles-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-post.featured-post {
        grid-row: auto;
        grid-column: auto;
    }
    
    .blog-post.featured-post .blog-image {
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 750px;
    }
    
    .header-wrapper {
        height: 70px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--white);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .navigation.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .nav-list li {
        width: 100%;
        margin: 10px 0;
    }
    
    .nav-link {
        display: block;
        padding: 10px 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .team-members,
    .services-wrapper,
    .testimonials-wrapper,
    .articles-grid,
    .pricing-grid,
    .blog-grid,
    .categories-wrapper {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card.featured-price {
        transform: scale(1);
    }
    
    .pricing-card.featured-price:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-date {
        margin-top: 5px;
    }
}

/* Animation for carousel buttons */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 2;
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Error message styling */
.error-message {
    color: var(--danger);
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Animation for section entrance */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: var(--primary-dark);
}

.cookie-decline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white) !important;
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
}