/* Global styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.btn-primary {
    background-color: #34558b;
    border-color: #34558b;
}

.btn-primary:hover {
    background-color: #3182ce;
    border-color: #3182ce;
}

.navbar-scrolled .dropdown-item {
    color: #fff; /* Ändra till vit */
}

.navbar-scrolled .dropdown-item:hover, 
.navbar-scrolled .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}
/* Header section */

.sticky-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    padding: 0;
    margin-right: 1.5rem;
}

.navbar-scrolled .nav-link {
    color: #fff !important; /* Ändra till vit */
}

.navbar-scrolled .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important; /* Ljusare vit vid hover */
}
/* Dropdown styles */

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: #333;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(52, 85, 139, 0.1);
    color: #34558b;
}

/* Styles for scrolled state */

.navbar-scrolled .dropdown-menu {
    background-color: #fff;
}

.navbar-scrolled .dropdown-item {
    color: #333;
}

.navbar-scrolled .dropdown-item.active,
.navbar-scrolled .dropdown-item:active {
    color: #fff;
}

.navbar-scrolled .dropdown-item:hover, 
.navbar-scrolled .dropdown-item:focus {
    background-color: rgba(52, 85, 139, 0.1);
    color: #34558b;
}

/* Hover effect for dropdown items */
.dropdown-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #34558b;
    transition: all 0.3s ease;
    opacity: 0;
}

.dropdown-item:hover::after {
    width: 100%;
    opacity: 1;
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo {
    filter: brightness(1.2);
}

.white-filter {
    filter: brightness(0) invert(1);
}

.nav-link {
    font-weight: 600;
    color: #fff !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
    opacity: 0;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
    opacity: 1;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


.navbar-scrolled .nav-link {
    color: #333 !important;
}

.navbar-scrolled .nav-link:hover {
    color: #34558b !important;
}

.navbar-scrolled .nav-link::after {
    background-color: #34558b;
}

.navbar-scrolled .logo {
    filter: none;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.25rem 0.75rem;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5);
}

.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-brand .logo {
        height: 40px;
    }

    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 20px;
        border-radius: 10px;
    }

    .navbar-scrolled .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}
/* För mobilmenyn */

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5);
}

.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 15px;
        border-radius: 5px;
    }
}

/* Hero section */

.hero {
    position: relative;
    height: 100vh;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
	background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-form .form-control {
    height: 50px;
    padding: 0 15px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 5px;
}

.hero-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form .btn-primary {
    height: 50px;
    font-size: 1rem;
    font-weight: 600;
    background-color: #34558b;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-form .btn-primary:hover {
    background-color: #3182ce;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}


/* Gemensam stil för båda sektionerna */
.services-intro,
.services {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Services intro section */

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item p {
    margin-bottom: 20px;
}

.services-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-intro h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
}

.services-intro .lead {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-learn-more {
    padding: 12px 30px;
    background-color: transparent;
    color: #34558b;
    border: 2px solid #34558b;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-learn-more:hover {
    background-color: #34558b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.btn-learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

/* Services section */

.services-section {
    padding: 70px 0;
    background-color: #f0f4f8;
}

.services-section h2 {
    color: #1a202c;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.2;
}

.services-section .lead {
    color: #4a5568;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-learn-more {
    padding: 15px 40px;
    background-color: #3182ce;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-learn-more:hover {
    background-color: #2c5282;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 82, 130, 0.2);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.service-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.service-item .icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #ebf8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-item i {
    font-size: 2rem;
    color: #3182ce;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.service-item p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-item .btn-primary {
    background-color: transparent;
    color: #3182ce;
    border: 2px solid #3182ce;
    padding: 10px 25px;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-item .btn-primary:hover {
    background-color: #3182ce;
    color: #fff;
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-section h2 {
        font-size: 2.5rem;
    }
    
    .services-section .lead {
        font-size: 1.1rem;
    }
}

/* How it works section */

.how-it-works {
    background-color: #34558b;
    padding: 40px 0;
    color: white;
}

.how-it-works h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.cta-form .form-control, 
.cta-form .btn {
    height: 50px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
}

.cta-form .btn-dark {
    background-color: #333;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.cta-form .btn-dark:hover {
    background-color: #555;
}

@media (max-width: 991px) {
    .how-it-works h3 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .cta-form .row > div {
        margin-bottom: 10px;
    }
}

/* Case studies section */

.case-studies {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.case-studies h2 {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-item {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
    background-color: #fff;
}

.case-study-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.case-study-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
}

.case-study-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    background-color: #f0f0f0;
    transition: transform 0.3s ease;
}

.case-study-item:hover .case-study-image img {
    transform: translate(-50%, -50%) scale(1.05);
}

.case-study-content {
    padding: 20px;
    background-color: #fff;
    border-top: 3px solid #34558b;
}

.case-study-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #34558b;
}

.case-study-description {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.btn-read-more {
    display: inline-block;
    color: #34558b;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.case-study-item:hover .btn-read-more {
    color: #3182ce;
}

.case-study-item:hover .btn-read-more i {
    transform: translateX(5px);
}

.case-study-item::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #34558b;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-study-item:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive styles */

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .how-it-works {
        text-align: center;
    }
    
    .cta-form {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .service-item {
        margin-bottom: 30px;
    }
    
    .cta-form .btn-dark {
        margin-top: 15px;
    }
}

/* Pricing section */

.pricing {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8em;
    margin-right: 5px;
}

.price-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.price-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.price-item .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #34558b;
}

.price-item ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-item ul li {
    margin-bottom: 15px;
    color: #666;
    font-size: 1rem;
}

.price-item .btn-primary {
    background-color: #34558b;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
}

.price-item .btn-primary:hover {
    background-color: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.price-item.featured {
    background-color: #34558b;
    color: #fff;
    transform: scale(1.05);
}

.price-item.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-item.featured h3,
.price-item.featured .price,
.price-item.featured ul li {
    color: #fff;
}

.price-item.featured .btn-primary {
    background-color: #fff;
    color: #34558b;
}

.price-item.featured .btn-primary:hover {
    background-color: #f8f9fa;
    color: #34558b;
}

/* Tillägg för ikoner */

.price-item ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #34558b;
    margin-right: 10px;
}

.price-item.featured ul li::before {
    color: #fff;
}

/* Responsivitet */

@media (max-width: 991px) {
    .price-item {
        margin-bottom: 30px;
    }
    
    .price-item.featured {
        transform: none;
    }
    
    .price-item.featured:hover {
        transform: translateY(-10px);
    }
}

/* google recensioner */

.google-reviews-section h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.google-reviews-container {
    max-width: 100%;
    overflow: hidden;
}

.sk-ww-google-reviews {
    max-width: none !important;
    width: 100% !important;
}


/* vanliga frågor */

.faq-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    color: #1a202c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    background-color: #fff;
    padding: 20px 30px;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #34558b;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a202c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 30px;
    font-size: 1rem;
    color: #4a5568;
    background-color: #fff;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .accordion-body {
        padding: 15px 20px;
    }
}

/* Footer section */

.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact info */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #34558b;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-info a:hover {
    color: #fff;
    border-bottom-color: #34558b;
}

/* Social links */
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    margin-bottom: 20px;
}

.social-links li {
    margin-right: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #34558b;
}

/* Google rating */

.google-rating {
    margin-top: 15px;
}

.google-rating-box {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #333;
    border-radius: 4px;
    padding: 8px 12px;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

.google-rating-box:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rating-content {
    display: flex;
    align-items: center;
}

.google-text {
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.google-text .g { color: #4285F4; }
.google-text .o1 { color: #EA4335; }
.google-text .o2 { color: #FBBC05; }
.google-text .l { color: #34A853; }
.google-text .e { color: #EA4335; }

.rating-score {
    font-size: 1em;
    font-weight: bold;
    margin-right: 8px;
}

.rating-stars {
    color: #FBBC05;
    font-size: 0.9em;
}

.rating-stars i {
    margin-right: 1px;
}

/* Footer links */

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-links li:not(:last-child)::after {
    content: '|';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #34558b;
}

/* Right column layout */
.footer-right-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .footer-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer .col-md-6 {
        text-align: center;
    }

    .footer-right-column {
        height: auto;
        align-items: center;
    }

    .social-links {
        margin-bottom: 20px;
    }

    .google-rating {
        margin-top: 20px;
        align-self: center;
    }

    .google-rating-box {
        display: flex;
        justify-content: center;
    }
}
/* Services section */

.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* How it works section */

.how-it-works {
    background-color: #34558b;
    padding: 60px 0;
    color: white;
}

/* Case studies section */

.case-studies {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Pricing section */

.pricing {
    padding: 80px 0;
    background-color: #f1f3f5;
}

/* Footer section */

.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.services::after,
.case-studies::after,
.pricing::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(to right, #34558b, transparent);
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
}

/* annonsering */

.annonsering-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
}

.annonsering-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.annonsering-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}



.annonsering-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}



.annonsering-cta {
    background-color: #34558b;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.annonsering-cta:hover {
    background-color: #2a446f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 85, 139, 0.4);
}

@media (max-width: 768px) {
    .annonsering-hero-title {
        font-size: 2.5rem;
    }
    .annonsering-hero-description {
        font-size: 1rem;
    }
    .annonsering-hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .annonsering-hero-title {
        font-size: 2rem;
    }

    .annonsering-hero-description {
        font-size: 0.9rem;
    }

    .annonsering-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .annonsering-hero-title {
        font-size: 1.75rem;
    }

    .annonsering-hero-description {
        font-size: 0.85rem;
    }
}

.annonsering-services {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #34558b;
    margin-bottom: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34558b;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .service-card {
        padding: 1.5rem;
    }
}

/* ny hemsida */ 

/* Ny hemsida Hero Section */
.ny-hemsida-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.ny-hemsida-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ny-hemsida-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.ny-hemsida-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.ny-hemsida-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ny-hemsida-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Service Cards */
.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Process Section */
.process-step {
    text-align: center;
    padding: 1rem;
}

.process-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Testimonial Section */
.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: #007bff;
}

.cta-section .btn-light:hover {
    background-color: #f8f9fa;
    color: #007bff;
}