:root {
    --primary-color: #003366;
    --secondary-color: #005580;
    --accent-color: #007acc;
    --light-color: #e9f1f7;
    --dark-color: #333333;
    --text-color: #4d4d4d;
    --gray-color: #f4f4f4;
    --white-color: #ffffff;
    --success-color: #28a745;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

/* Utility Classes */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.bg-accent {
    background-color: rgba(0, 122, 204, 0.15); /* Lighter version of accent color */
    color: var(--text-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    display: none;
}

/* Founder photo */
.founder-photo-frame {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.founder-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.founder-photo-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .tagline {
        display: block;
    }
    
    .founder-photo-frame {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .logo-image {
        height: 35px !important;
    }
    
    .founder-photo {
        max-width: 100%;
        margin: 0 auto 20px;
    }
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark-color);
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.contact-btn {
    padding: 10px 20px !important;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--white-color) !important;
    border: none !important;
}

.contact-btn:hover {
    background-color: var(--secondary-color);
}

.language-selector {
    position: relative;
    margin-left: 15px;
}

.lang-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 100;
    display: none;
    min-width: 120px;
}

.lang-menu:hover .lang-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.language-option {
    display: block;
    padding: 5px;
    transition: var(--transition);
    position: relative;
}

.language-option:hover {
    transform: scale(1.1);
}

.language-option.active {
    background-color: var(--light-color);
    border-radius: 3px;
}

.flag-icon {
    width: 24px;
    height: 16px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.flag-en {
    background-image: url('https://flagcdn.com/w40/gb.png');
}

.flag-sv {
    background-image: url('https://flagcdn.com/w40/se.png');
}

.flag-no {
    background-image: url('https://flagcdn.com/w40/no.png');
}

.current-flag {
    margin-left: 5px;
    display: inline-block;
}

.tooltip {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.language-option:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://images.unsplash.com/photo-1531973576160-7125cd663d86');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    color: var(--white-color);
    margin-top: 70px;
}

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

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(3px);
}

.testimonial-container {
    margin-top: 40px;
    text-align: center;
}

.testimonial {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-color);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 40px;
}

.testimonial::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: 0;
    top: -20px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial::after {
    content: '\201D';
    font-size: 4rem;
    position: absolute;
    right: 0;
    bottom: -40px;
    color: var(--primary-color);
    opacity: 0.3;
}

.callout-container {
    margin-top: 40px;
    text-align: center;
}

.callout {
    background-color: var(--white-color);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 0 4px 4px 0;
    text-align: left;
    margin-bottom: 20px;
    display: inline-block;
}

.download-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.download-link i {
    margin-right: 8px;
}

.download-link:hover {
    color: var(--secondary-color);
}

/* Why Us Section */
.why-us-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.why-us-text {
    flex: 1;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.feature-list i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.edge-container {
    flex: 1;
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.edge-container h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
}

.edge-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.edge-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.edge-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* CTA Section */
#cta {
    background-image: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
}

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

.cta-content h2 {
    color: var(--white-color);
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Founder Section */
.founder-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.founder-image {
    flex: 1;
    text-align: center;
}

.placeholder-image {
    width: 250px;
    height: 250px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto;
}

.founder-info {
    flex: 2;
}

.founder-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Engagement Models Section */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.engagement-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.engagement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.engagement-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.engagement-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.engagement-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-it-matters {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-it-matters h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

/* Contact Section */
.contact-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-form {
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white-color);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Projects Page */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.project-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 20px;
}

.project-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Logo-specific styles */
.project-logo {
    max-width: 60%;
    max-height: 80%;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.project-card:hover .project-logo {
    filter: grayscale(50%) opacity(1);
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-meta {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 15px;
    opacity: 0.8;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.project-tags span {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    margin-top: auto;
    align-self: flex-start;
}

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

/* Skills Page */
.skills-section {
    margin-bottom: 4rem;
}

.skills-category {
    margin-bottom: 2.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.skill-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.skill-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.skill-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.skill-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--dark-color);
}

.skill-level {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.skill-level-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.skill-details {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.experience-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.experience-company {
    font-weight: 600;
    color: var(--primary-color);
}

.experience-period {
    color: #666;
    font-size: 0.9rem;
}

.experience-role {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.experience-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.experience-tag {
    background: #f0f4f8;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo h3 {
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--white-color);
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    margin-left: 15px;
}

.social-links a:hover {
    color: var(--white-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.carousel-slide {
    display: none;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.carousel-slide.active {
    display: block;
    animation-name: fadeIn;
}

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

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

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.carousel-btn {
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: var(--light-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .why-us-content,
    .founder-content {
        flex-direction: column;
    }
    
    .founder-image {
        margin-bottom: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        padding: 20px 0;
        flex-direction: column;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        top: 70px;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-links {
        margin-top: 20px;
    }
    
    .social-links a {
        margin-left: 0;
        margin-right: 15px;
    }
}
