/* Grundläggande stilar */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #384D48;  /* Mörkgrön - huvudfärg */
    --secondary-color: #6E7271; /* Mellangrå - sekundärfärg */
    --accent-color: #ACAD94; /* Sage/olivgrön - accentfärg */
    --text-color: #384D48; /* Mörkgrön för text */
    --light-text: #6E7271; /* Mellangrå för sekundär text */
    --background-light: #E2E2E2; /* Ljusgrå - bakgrundsfärg */
    --background-medium: #D8D4D5; /* Varmgrå - alternativ bakgrund */
    --background-warm: #E7D8C9; /* Varm beige - accent bakgrund */
    --background-dark: #384D48; /* Mörkgrön - footer bakgrund */
}

/* Grundläggande reset och typografi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 50;
}

.navbar-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.mobile-menu-button {
    display: block;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-button:hover {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.navbar-menu {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-menu.active {
    display: block;
}

.navbar-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: block;
        position: static;
        padding: 0;
        box-shadow: none;
    }
    
    .navbar-links {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hero sektion */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('images/villarenovering.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: heroFade 1s ease-in;
}

@keyframes heroFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(56, 77, 72, 0.7), /* Lite mer transparent för att visa mer av den fina bilden */
        rgba(56, 77, 72, 0.8)
    );
}

.hero-content {
    position: relative;
    padding: 0 1rem;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    animation: contentSlide 1s ease-out;
}

@keyframes contentSlide {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    .hero {
        background-position: center 30%; /* Justerar fokuspunkten lite uppåt för att visa mer av poolen */
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: buttonPop 1.5s ease-out;
}

@keyframes buttonPop {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Sektioner */
.section {
    padding: 5rem 0;
}

.section-gray {
    background-color: var(--background-light);
}

.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

/* Tjänster kort */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--background-medium);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card .hero-button {
    margin-top: auto;
    transform: translateY(0);
    transition: all 0.3s ease;
    background-color: var(--background-light);
    color: var(--text-color);
}

.service-card:hover .hero-button {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Omdömen sektion */
.reviews-section {
    background-color: white;
    padding: 6rem 0;
}

.reviews-rating {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-rating h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.aajoda-badge {
    width: 120px;
    height: auto;
}

.rating-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-stars {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.rating-stars img {
    width: 180px;
    height: auto;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0.5rem 0;
}

.rating-count {
    font-size: 1.2rem;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.review-card {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:nth-child(even) {
    background-color: var(--primary-color);
    color: white;
}

.review-card:nth-child(even) .review-text,
.review-card:nth-child(even) .review-author {
    color: white;
}

.review-card:nth-child(even) .review-location {
    color: rgba(255,255,255,0.8);
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars-img {
    width: 120px;
    height: auto;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-location {
    color: var(--light-text);
    font-size: 0.95rem;
}

.review-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--accent-color);
    opacity: 0.15;
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .review-card:nth-child(3n+1) {
        transform: translateY(-1rem);
    }
    
    .review-card:nth-child(3n+2) {
        transform: translateY(1rem);
    }
    
    .review-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

/* Page Header */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 4rem;
}

/* Specifik styling för Om oss-sidans header */
.om-oss-header {
    background-image: url('images/bennysbil.jpg');
    background-size: cover;
    background-position: center 40%;
    position: relative;
}

.om-oss-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(56, 77, 72, 0.7), rgba(56, 77, 72, 0.8));
}

.page-header-content {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeDown 0.8s ease-out;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Kontakt Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

/* Kontakt Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.info-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.info-card p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-color);
}

/* Kontaktformulär */
.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.form-intro {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(172, 173, 148, 0.1);
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Active nav link */
.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Projekt Section */
#aajoda_div6b667a058c2647629dce .aajoda-item {
    height: 300px !important;
    margin-bottom: 2rem !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

#aajoda_div6b667a058c2647629dce .aajoda-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

#aajoda_div6b667a058c2647629dce .aajoda-item h2 {
    background: linear-gradient(to top, rgba(56, 77, 72, 0.9), transparent) !important;
    padding: 1.5rem !important;
    color: white !important;
    font-size: 1.1rem !important;
}

#aajoda_div6b667a058c2647629dce .aajoda-item p,
#aajoda_div6b667a058c2647629dce .ajjeinfo {
    display: none !important;
}

@media (max-width: 768px) {
    #aajoda_div6b667a058c2647629dce .aajoda-item {
        height: 250px !important;
    }
}

.text-center {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Om oss sida */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-section:nth-child(even) {
    background-color: var(--background-light);
}

.about-section h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-color);
}

.about-section ul, 
.about-section ol {
    list-style-type: none;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.about-section ul li,
.about-section ol li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.about-section ul li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-section ol {
    counter-reset: item;
}

.about-section ol li:before {
    content: counter(item) ".";
    counter-increment: item;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: white;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .hero-button {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.cta-section .hero-button:hover {
    background-color: white;
    color: var(--primary-color);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--light-text);
    margin-bottom: 0;
}

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

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.value-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--light-text);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Specifik styling för Projekt-sidans header */
.projekt-header {
    background-image: url('images/kakel.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.projekt-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(56, 77, 72, 0.7), rgba(56, 77, 72, 0.8));
}

/* Specifik styling för Tjänster-sidans header */
.tjanster-header {
    background-image: url('images/kakel.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.tjanster-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(56, 77, 72, 0.7), rgba(56, 77, 72, 0.8));
}

/* Tjänster detaljsida */
.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .services-detail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-detail-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--background-medium);
    width: 100%;
    min-height: 400px;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
}

.service-detail-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-detail-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 120px;
}

.service-detail-card .hero-button {
    margin-top: auto;
}

/* Dropdown meny */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 51;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: var(--background-light);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .dropdown-link {
        padding: 0.5rem 0.75rem;
    }
}

/* Arbetssätt sektion */
.work-process-section {
    text-align: center;
    margin: 5rem auto 0;
    max-width: 1200px;
    padding: 4rem;
    background-color: var(--background-light);
    border-radius: 0.5rem;
}

.work-process-section h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.work-process-content {
    max-width: 900px;
    margin: 0 auto;
}

.work-process-section ul {
    list-style-type: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

@media (max-width: 768px) {
    .work-process-section ul {
        grid-template-columns: 1fr;
    }
    
    .work-process-section {
        padding: 2rem;
    }
}

.work-process-section ul li {
    position: relative;
    padding-left: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.work-process-section ul li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.work-process-section p {
    color: var(--text-color);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.footer-reviews {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.partner-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.partner-link:hover {
    color: white;
    text-decoration: underline;
}

.partner-link:visited {
    color: var(--accent-color); /* Behåll samma färg även efter besök */
}

.partner-link:visited:hover {
    color: white;
    text-decoration: underline;
}

/* Anpassa formuläret för mindre skärmar */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .dropdown-link {
        padding: 0.5rem 0.75rem;
    }
} 

.footer-bottom a {
    color: #fff !important;
    /* Gör länken vit */
    text-decoration: underline;
    /* Valfritt, bara för tydlighet */
}